Skip to main content
Glama

Remix Keyboardia session

remix_session

Copy an existing session — published or editable — into a new editable session that records the original as its source. The source is never modified, so this is how to continue from published work.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesThe UUID after /s/ in a Keyboardia share URL. Pass only the UUID, not the full URL.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate this is not read-only and not destructive. The description adds useful context beyond that: the new session records the original as its source and is editable. It reinforces the non-destructive nature ('source is never modified'). While it doesn't detail side effects like permissions or output, the annotation coverage lowers the burden, and this is adequate for a simple mutation tool.

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?

Two sentences, no wasted words. It front-loads the primary action, then clarifies the key safety guarantee (source never modified) and gives a usage hint. Every sentence contributes directly to the agent's understanding.

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

Completeness4/5

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

The tool is simple (one parameter, no output schema), and the description covers what it does, when to use it, and the key side-effect guarantee. It doesn't explicitly describe the return value, which could be a gap since there's no output schema, but the phrase 'into a new editable session' strongly implies the result. For this complexity level, it is complete enough for correct invocation.

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

Parameters3/5

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

The schema already provides 100% parameter coverage with a thorough description of session_id (UUID format, what to pass, what not to pass). The tool description adds minimal extra meaning beyond calling it an 'existing session,' which is already implied by the schema. Per the rubric, high schema coverage sets a baseline of 3, and there is no compensatory detail in the description.

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 clearly states the tool copies an existing session into a new editable one, with a specific verb (copy), resource (session), and outcome. It also mentions the source is never modified, distinguishing it from sibling tools like edit_session (which implies in-place editing) and create_session (which likely creates from scratch). The phrase 'this is how to continue from published work' further clarifies its unique role.

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: 'this is how to continue from published work.' It implicitly contrasts with other actions like publishing or editing, and emphasizes that the source is left untouched. However, it does not explicitly name sibling tools or state when not to use it, so it falls short of a 5.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct action: analyze, create, edit, export, get, publish, and remix. Even similar actions like create versus publish are clearly separated by whether the result is editable or immutable.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with clear, domain-appropriate verbs (analyze, create, edit, export, get, publish, remix). The naming is uniform and predictable.

Tool Count5/5

Seven tools is well-scoped for the session lifecycle: create, read, edit, export, publish, remix, and analyze. There are no redundant tools and the count feels appropriate for the domain.

Completeness4/5

The tool set covers the core session lifecycle well, including editing, publishing, remixing, and exporting. A minor gap is the lack of a delete or list operation, but these may be handled outside the server or are not essential for the intended workflow.