Skip to main content
Glama

Create Sessionplan

create_session_link
Read-only

Use this when the user wants a new Sessionplan for a workshop, training, meeting, event, or other timed session, or a revised link after decoding an existing Sessionplan. Pass a complete session object matching inputSchema; partial updates and patches are not accepted. The returned structuredContent.link is an opaque snapshot URL and must be presented verbatim.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sessionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
linkYesOpaque, directly openable Sessionplan snapshot URL. Present this exact value verbatim; do not reconstruct, normalize, shorten, decode, or modify it.
summaryNoOptional compact summary of the encoded session.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed28 schema fields changed
    • removedInput schema / $defs / WorkshopItem
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "blockTypeId": {
      -      "description": "ID of a declared block type, or null when none applies.",
      -      "type": [
      -        "string",
      -        "null"
      -      ]
      -    },
      -    "children": {
      -      "description": "Nested items belonging to a group or breakout.",
      -      "items": {
      -        "$ref": "#/$defs/WorkshopItem"
      -      },
      -      "type": "array"
      -    },
      -    "duration": {
      -      "description": "Item duration in minutes.",
      -      "minimum": 0,
      -      "type": "number"
      -    },
      -    "durationLocked": {
      -      "description": "Whether automatic adjustments must preserve this duration.",
      -      "type": "boolean"
      -    },
      -    "fixedStartTime": {
      -      "description": "Explicit start time for the item when one is required.",
      -      "type": "string"
      -    },
      -    "id": {
      -      "description": "Stable item identifier, unique within the session.",
      -      "minLength": 1,
      -      "type": "string"
      -    },
      -    "laneIndex": {
      -      "description": "Zero-based breakout lane index for this item.",
      -      "minimum": 0,
      -      "type": "integer"
      -    },
      -    "lanePersons": {
      -      "additionalProperties": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "description": "Mapping from lane identifiers to arrays of declared person IDs.",
      -      "type": "object"
      -    },
      -    "lanes": {
      -      "description": "Number of breakout lanes.",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "material": {
      -      "description": "Physical or digital materials required; use an empty string when none are needed.",
      -      "type": "string"
      -    },
      -    "notes": {
      -      "description": "Facilitation instructions, method details, or other notes.",
      -      "type": "string"
      -    },
      -    "parallel": {
      -      "description": "Whether child items or lanes run in parallel.",
      -      "type": "boolean"
      -    },
      -    "personIds": {
      -      "description": "IDs of declared persons assigned to this item.",
      -      "items": {
      -        "type": "string"
      -      },
      -      "type": "array"
      -    },
      -    "sameInAllBreakouts": {
      -      "description": "Whether every breakout lane uses the same agenda.",
      -      "type": "boolean"
      -    },
      -    "title": {
      -      "description": "Concise title shown in the Sessionplan timeline.",
      -      "type": "string"
      -    },
      -    "type": {
      -      "description": "Item kind. Groups and breakouts may contain children.",
      -      "enum": [
      -        "block",
      -        "group",
      -        "breakout"
      -      ],
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "id",
      -    "type",
      -    "blockTypeId",
      -    "title",
      -    "duration",
      -    "notes",
      -    "material"
      -  ],
      -  "type": "object"
      -}
    • addedInput schema / $defs / blockType
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "color": {
      +      "type": "string"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "name": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "name",
      +    "color"
      +  ],
      +  "type": "object"
      +}
    • addedInput schema / $defs / item
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "blockTypeId": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "children": {
      +      "items": {
      +        "$ref": "#/$defs/item"
      +      },
      +      "type": "array"
      +    },
      +    "duration": {
      +      "minimum": 0,
      +      "type": "number"
      +    },
      +    "durationLocked": {
      +      "type": "boolean"
      +    },
      +    "fixedStartTime": {
      +      "type": "string"
      +    },
      +    "id": {
      +      "minLength": 1,
      +      "type": "string"
      +    },
      +    "laneIndex": {
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "lanePersons": {
      +      "additionalProperties": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "type": "object"
      +    },
      +    "lanes": {
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "material": {
      +      "type": "string"
      +    },
      +    "notes": {
      +      "type": "string"
      +    },
      +    "parallel": {
      +      "type": "boolean"
      +    },
      +    "personIds": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "sameInAllBreakouts": {
      +      "type": "boolean"
      +    },
      +    "title": {
      +      "type": "string"
      +    },
      +    "type": {
      +      "enum": [
      +        "block",
      +        "group",
      +        "breakout"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "type",
      +    "blockTypeId",
      +    "title",
      +    "duration",
      +    "notes",
      +    "material"
      +  ],
      +  "type": "object"
      +}
    • addedInput schema / $defs / person
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "color": {
      +      "type": "string"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "name": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "name",
      +    "color"
      +  ],
      +  "type": "object"
      +}
    • addedInput schema / $defs / workshop
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "date": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "description": {
      +      "type": "string"
      +    },
      +    "durationLocked": {
      +      "type": "boolean"
      +    },
      +    "lastModified": {
      +      "type": "string"
      +    },
      +    "startTime": {
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "targetDuration": {
      +      "minimum": 0,
      +      "type": "number"
      +    },
      +    "title": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "title",
      +    "description",
      +    "date",
      +    "startTime"
      +  ],
      +  "type": "object"
      +}
    • removedInput schema / properties / session / description
      Removed value: -"Complete Sessionplan document. When creating or revising a plan, send the full document defined here; partial updates and patches are not accepted."
    • removedInput schema / properties / session / properties / blockTypes / description
      Removed value: -"Small set of reusable visual categories referenced by item blockTypeId values."
    • addedInput schema / properties / session / properties / blockTypes / items / $ref
      Added value: +"#/$defs/blockType"
    • removedInput schema / properties / session / properties / blockTypes / items / additionalProperties
      Removed value: -false
    • removedInput schema / properties / session / properties / blockTypes / items / properties
      Removed value: -{
      -  "color": {
      -    "description": "Color value used to display this block type.",
      -    "type": "string"
      -  },
      -  "id": {
      -    "description": "Stable block-type identifier, unique within the session.",
      -    "type": "string"
      -  },
      -  "name": {
      -    "description": "Human-readable block-type name.",
      -    "type": "string"
      -  }
      -}
    • removedInput schema / properties / session / properties / blockTypes / items / required
      Removed value: -[
      -  "id",
      -  "name",
      -  "color"
      -]
    • removedInput schema / properties / session / properties / blockTypes / items / type
      Removed value: -"object"
    • removedInput schema / properties / session / properties / items / description
      Removed value: -"Ordered top-level timeline items. Durations are expressed in minutes."
    • changedInput schema / properties / session / properties / items / items / $ref
      Previous value: -"#/$defs/WorkshopItem"New value: +"#/$defs/item"
    • removedInput schema / properties / session / properties / persons / description
      Removed value: -"People or roles explicitly supplied for this session."
    • addedInput schema / properties / session / properties / persons / items / $ref
      Added value: +"#/$defs/person"
    • removedInput schema / properties / session / properties / persons / items / additionalProperties
      Removed value: -false
    • removedInput schema / properties / session / properties / persons / items / properties
      Removed value: -{
      -  "color": {
      -    "description": "Color value used to display this person or role.",
      -    "type": "string"
      -  },
      -  "id": {
      -    "description": "Stable person identifier, unique within the session.",
      -    "type": "string"
      -  },
      -  "name": {
      -    "description": "Person or role name.",
      -    "type": "string"
      -  }
      -}
    • removedInput schema / properties / session / properties / persons / items / required
      Removed value: -[
      -  "id",
      -  "name",
      -  "color"
      -]
    • removedInput schema / properties / session / properties / persons / items / type
      Removed value: -"object"
    • removedInput schema / properties / session / properties / version / description
      Removed value: -"Sessionplan document format version."
    • addedInput schema / properties / session / properties / workshop / $ref
      Added value: +"#/$defs/workshop"
    • removedInput schema / properties / session / properties / workshop / additionalProperties
      Removed value: -false
    • removedInput schema / properties / session / properties / workshop / description
      Removed value: -"Top-level session metadata."
    • removedInput schema / properties / session / properties / workshop / properties
      Removed value: -{
      -  "date": {
      -    "description": "Session date, or null when unknown.",
      -    "type": [
      -      "string",
      -      "null"
      -    ]
      -  },
      -  "description": {
      -    "description": "Short description of the session goal or context.",
      -    "type": "string"
      -  },
      -  "durationLocked": {
      -    "description": "Whether the target duration must be preserved.",
      -    "type": "boolean"
      -  },
      -  "lastModified": {
      -    "description": "Last-modified value carried by the Sessionplan document.",
      -    "type": "string"
      -  },
      -  "startTime": {
      -    "description": "Session start time, or null when unknown.",
      -    "type": [
      -      "string",
      -      "null"
      -    ]
      -  },
      -  "targetDuration": {
      -    "description": "Target duration of the complete session in minutes.",
      -    "minimum": 0,
      -    "type": "number"
      -  },
      -  "title": {
      -    "description": "Session title.",
      -    "type": "string"
      -  }
      -}
    • removedInput schema / properties / session / properties / workshop / required
      Removed value: -[
      -  "title",
      -  "description",
      -  "date",
      -  "startTime"
      -]
    • removedInput schema / properties / session / properties / workshop / type
      Removed value: -"object"
    • addedInput schema / properties / session / title
      Added value: +"Sessionplan document"
  2. Changed38 schema fields changed
    • addedInput schema / $defs / WorkshopItem / properties / blockTypeId / description
      Added value: +"ID of a declared block type, or null when none applies."
    • addedInput schema / $defs / WorkshopItem / properties / children / description
      Added value: +"Nested items belonging to a group or breakout."
    • addedInput schema / $defs / WorkshopItem / properties / duration / description
      Added value: +"Item duration in minutes."
    • addedInput schema / $defs / WorkshopItem / properties / durationLocked / description
      Added value: +"Whether automatic adjustments must preserve this duration."
    • addedInput schema / $defs / WorkshopItem / properties / fixedStartTime / description
      Added value: +"Explicit start time for the item when one is required."
    • addedInput schema / $defs / WorkshopItem / properties / id / description
      Added value: +"Stable item identifier, unique within the session."
    • addedInput schema / $defs / WorkshopItem / properties / laneIndex / description
      Added value: +"Zero-based breakout lane index for this item."
    • addedInput schema / $defs / WorkshopItem / properties / lanePersons / description
      Added value: +"Mapping from lane identifiers to arrays of declared person IDs."
    • addedInput schema / $defs / WorkshopItem / properties / lanes / description
      Added value: +"Number of breakout lanes."
    • addedInput schema / $defs / WorkshopItem / properties / material / description
      Added value: +"Physical or digital materials required; use an empty string when none are needed."
    • addedInput schema / $defs / WorkshopItem / properties / notes / description
      Added value: +"Facilitation instructions, method details, or other notes."
    • addedInput schema / $defs / WorkshopItem / properties / parallel / description
      Added value: +"Whether child items or lanes run in parallel."
    • addedInput schema / $defs / WorkshopItem / properties / personIds / description
      Added value: +"IDs of declared persons assigned to this item."
    • addedInput schema / $defs / WorkshopItem / properties / sameInAllBreakouts / description
      Added value: +"Whether every breakout lane uses the same agenda."
    • addedInput schema / $defs / WorkshopItem / properties / title / description
      Added value: +"Concise title shown in the Sessionplan timeline."
    • addedInput schema / $defs / WorkshopItem / properties / type / description
      Added value: +"Item kind. Groups and breakouts may contain children."
    • changedInput schema / properties / session / description
      Previous value: -"Vollständiges Sessionplan-JSON gemäß der öffentlichen Sessionplan-Import-Spezifikation."New value: +"Complete Sessionplan document. When creating or revising a plan, send the full document defined here; partial updates and patches are not accepted."
    • addedInput schema / properties / session / properties / blockTypes / description
      Added value: +"Small set of reusable visual categories referenced by item blockTypeId values."
    • addedInput schema / properties / session / properties / blockTypes / items / properties / color / description
      Added value: +"Color value used to display this block type."
    • addedInput schema / properties / session / properties / blockTypes / items / properties / id / description
      Added value: +"Stable block-type identifier, unique within the session."
    • addedInput schema / properties / session / properties / blockTypes / items / properties / name / description
      Added value: +"Human-readable block-type name."
    • addedInput schema / properties / session / properties / items / description
      Added value: +"Ordered top-level timeline items. Durations are expressed in minutes."
    • addedInput schema / properties / session / properties / persons / description
      Added value: +"People or roles explicitly supplied for this session."
    • addedInput schema / properties / session / properties / persons / items / properties / color / description
      Added value: +"Color value used to display this person or role."
    • addedInput schema / properties / session / properties / persons / items / properties / id / description
      Added value: +"Stable person identifier, unique within the session."
    • addedInput schema / properties / session / properties / persons / items / properties / name / description
      Added value: +"Person or role name."
    • addedInput schema / properties / session / properties / version / description
      Added value: +"Sessionplan document format version."
    • addedInput schema / properties / session / properties / workshop / description
      Added value: +"Top-level session metadata."
    • addedInput schema / properties / session / properties / workshop / properties / date / description
      Added value: +"Session date, or null when unknown."
    • addedInput schema / properties / session / properties / workshop / properties / description / description
      Added value: +"Short description of the session goal or context."
    • addedInput schema / properties / session / properties / workshop / properties / durationLocked / description
      Added value: +"Whether the target duration must be preserved."
    • addedInput schema / properties / session / properties / workshop / properties / lastModified / description
      Added value: +"Last-modified value carried by the Sessionplan document."
    • addedInput schema / properties / session / properties / workshop / properties / startTime / description
      Added value: +"Session start time, or null when unknown."
    • addedInput schema / properties / session / properties / workshop / properties / targetDuration / description
      Added value: +"Target duration of the complete session in minutes."
    • addedInput schema / properties / session / properties / workshop / properties / targetDuration / minimum
      Added value: +0
    • addedInput schema / properties / session / properties / workshop / properties / title / description
      Added value: +"Session title."
    • changedOutput schema / properties / link / description
      Previous value: -"Direkt öffnbarer Sessionplan-Link."New value: +"Opaque, directly openable Sessionplan snapshot URL. Present this exact value verbatim; do not reconstruct, normalize, shorten, decode, or modify it."
    • addedOutput schema / properties / summary
      Added value: +{
      +  "additionalProperties": true,
      +  "description": "Optional compact summary of the encoded session.",
      +  "properties": {
      +    "blockCount": {
      +      "description": "Number of agenda blocks.",
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "title": {
      +      "description": "Session title.",
      +      "type": "string"
      +    },
      +    "totalDuration": {
      +      "description": "Total session duration in minutes.",
      +      "minimum": 0,
      +      "type": "number"
      +    }
      +  },
      +  "type": "object"
      +}
  3. Changed2 schema fields changed
    • addedInput schema / $defs
      Added value: +{
      +  "WorkshopItem": {
      +    "additionalProperties": false,
      +    "properties": {
      +      "blockTypeId": {
      +        "type": [
      +          "string",
      +          "null"
      +        ]
      +      },
      +      "children": {
      +        "items": {
      +          "$ref": "#/$defs/WorkshopItem"
      +        },
      +        "type": "array"
      +      },
      +      "duration": {
      +        "minimum": 0,
      +        "type": "number"
      +      },
      +      "durationLocked": {
      +        "type": "boolean"
      +      },
      +      "fixedStartTime": {
      +        "type": "string"
      +      },
      +      "id": {
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "laneIndex": {
      +        "minimum": 0,
      +        "type": "integer"
      +      },
      +      "lanePersons": {
      +        "additionalProperties": {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "type": "object"
      +      },
      +      "lanes": {
      +        "minimum": 1,
      +        "type": "integer"
      +      },
      +      "material": {
      +        "type": "string"
      +      },
      +      "notes": {
      +        "type": "string"
      +      },
      +      "parallel": {
      +        "type": "boolean"
      +      },
      +      "personIds": {
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "sameInAllBreakouts": {
      +        "type": "boolean"
      +      },
      +      "title": {
      +        "type": "string"
      +      },
      +      "type": {
      +        "enum": [
      +          "block",
      +          "group",
      +          "breakout"
      +        ],
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "id",
      +      "type",
      +      "blockTypeId",
      +      "title",
      +      "duration",
      +      "notes",
      +      "material"
      +    ],
      +    "type": "object"
      +  }
      +}
    • removedInput schema / properties / session / $defs
      Removed value: -{
      -  "WorkshopItem": {
      -    "$defs": {
      -      "WorkshopItem": {
      -        "properties": {
      -          "blockTypeId": {
      -            "type": [
      -              "string",
      -              "null"
      -            ]
      -          },
      -          "children": {
      -            "items": {
      -              "$ref": "#/$defs/WorkshopItem"
      -            },
      -            "type": "array"
      -          },
      -          "duration": {
      -            "minimum": 0,
      -            "type": "number"
      -          },
      -          "durationLocked": {
      -            "type": "boolean"
      -          },
      -          "fixedStartTime": {
      -            "type": "string"
      -          },
      -          "id": {
      -            "minLength": 1,
      -            "type": "string"
      -          },
      -          "laneIndex": {
      -            "minimum": 0,
      -            "type": "integer"
      -          },
      -          "lanePersons": {
      -            "additionalProperties": {
      -              "items": {
      -                "type": "string"
      -              },
      -              "type": "array"
      -            },
      -            "type": "object"
      -          },
      -          "lanes": {
      -            "minimum": 1,
      -            "type": "integer"
      -          },
      -          "material": {
      -            "type": "string"
      -          },
      -          "notes": {
      -            "type": "string"
      -          },
      -          "parallel": {
      -            "type": "boolean"
      -          },
      -          "personIds": {
      -            "items": {
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          "sameInAllBreakouts": {
      -            "type": "boolean"
      -          },
      -          "title": {
      -            "type": "string"
      -          },
      -          "type": {
      -            "enum": [
      -              "block",
      -              "group",
      -              "breakout"
      -            ],
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "id",
      -          "type",
      -          "blockTypeId",
      -          "title",
      -          "duration",
      -          "notes",
      -          "material"
      -        ],
      -        "type": "object"
      -      }
      -    },
      -    "properties": {
      -      "blockTypeId": {
      -        "type": [
      -          "string",
      -          "null"
      -        ]
      -      },
      -      "children": {
      -        "items": {
      -          "$ref": "#/$defs/WorkshopItem"
      -        },
      -        "type": "array"
      -      },
      -      "duration": {
      -        "minimum": 0,
      -        "type": "number"
      -      },
      -      "durationLocked": {
      -        "type": "boolean"
      -      },
      -      "fixedStartTime": {
      -        "type": "string"
      -      },
      -      "id": {
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "laneIndex": {
      -        "minimum": 0,
      -        "type": "integer"
      -      },
      -      "lanePersons": {
      -        "additionalProperties": {
      -          "items": {
      -            "type": "string"
      -          },
      -          "type": "array"
      -        },
      -        "type": "object"
      -      },
      -      "lanes": {
      -        "minimum": 1,
      -        "type": "integer"
      -      },
      -      "material": {
      -        "type": "string"
      -      },
      -      "notes": {
      -        "type": "string"
      -      },
      -      "parallel": {
      -        "type": "boolean"
      -      },
      -      "personIds": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "sameInAllBreakouts": {
      -        "type": "boolean"
      -      },
      -      "title": {
      -        "type": "string"
      -      },
      -      "type": {
      -        "enum": [
      -          "block",
      -          "group",
      -          "breakout"
      -        ],
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "id",
      -      "type",
      -      "blockTypeId",
      -      "title",
      -      "duration",
      -      "notes",
      -      "material"
      -    ],
      -    "type": "object"
      -  }
      -}
  4. First observed

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark this as read-only and non-destructive, and the description adds valuable behavioral details beyond that: the input must be a complete session object, partial updates and patches are rejected, and the returned structuredContent.link is an opaque snapshot URL that must be shown verbatim. This meaningfully informs the agent about failure modes and output handling without contradicting the read-only annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with no filler. The usage trigger is front-loaded, followed by the input contract and the output-handling requirement. Every sentence contributes essential information for correct invocation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the nested schema, existing output schema, and annotations, the description covers all essential operational aspects: when to call, what input shape is expected, the strictness of the input, and how to handle the returned link. Nothing needed to safely invoke the tool correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates with the critical semantic rule: the single 'session' parameter must be a complete object and partial updates are not accepted. This goes beyond the raw schema by clarifying the all-or-nothing contract. It does not enumerate nested fields, but those are fully defined in the input schema itself, so the added guidance is sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear 'Use this when...' that ties the tool to a specific user intent: creating a new Sessionplan or regenerating a link from a decoded session. It specifies the resource type (Sessionplan for workshops, training, meetings, events, or other timed sessions) and distinguishes this from the decode workflow by referencing 'after decoding an existing Sessionplan.' The verb and scope are unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: whenever a new Sessionplan link is needed or a revised link is required after decoding. It does not explicitly name decode_session_link as the alternative for decoding, but the workflow is implied strongly enough that an agent can route correctly between the two sibling tools. A direct 'use decode_session_link for decoding' would have made this fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation5/5

The two tools have clearly distinct roles: one creates a new Sessionplan link from a complete session object, the other decodes an existing link back into a session. Although revision is achieved by decode-then-create, each tool's purpose is unambiguous.

Naming Consistency5/5

Both tool names follow the same verb_noun snake_case pattern: create_session_link and decode_session_link. This is perfectly consistent and predictable.

Tool Count4/5

Only two tools exist, which is slightly below the typical 3-15 range, but the domain is narrowly scoped around encoding and decoding opaque Sessionplan links. Each tool earns its place and the count does not feel wasteful or incomplete.

Completeness5/5

The surface covers the full lifecycle implied by the domain: create a new session link, decode an existing link for reading or validation, and revise by decoding, modifying, and creating a new link. No obvious operations are missing given the opaque snapshot URL model.