Skip to main content
Glama

polymnemo

Save Session

save_session

Persist a session's full content under session_id for later reload.

Content is stored as ordered, losslessly-reassemblable chunks (also embedded, so it's searchable via recall). Re-saving the same session_id replaces it. Returns {session_id, chunks, chars, namespace}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYes
namespaceNo
session_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.4/5.0
Behavior1/5

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

The description adds useful behavioral detail about chunked storage, searchability via recall, and return shape. However, it contradicts the annotations: 'Re-saving the same session_id replaces it' describes destructive overwrite behavior, while destructiveHint=false signals no destructive operations.

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?

Three tight sentences with no filler. The core purpose is front-loaded, and each subsequent sentence adds distinct value: storage format, overwrite semantics, and return shape.

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

Completeness3/5

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

The description covers storage format, idempotency, and return value, and an output schema exists. However, namespace semantics are unexplained and the annotation contradiction undermines an agent's ability to reason about safety. Adequate but with clear gaps.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must carry parameter meaning. It clarifies session_id as the storage key and implies content is the session content, but it never explains the content string format or the nullable namespace parameter. This is insufficient compensation for the missing schema descriptions.

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 specific verb and object: 'Persist a session's full content under session_id for later reload.' This clearly states what the tool does and distinguishes it from siblings like load_session and recall.

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 gives clear context: use this to save a full session for later reload, and re-saving replaces existing content. It does not explicitly name alternatives or exclusion criteria, but the intended use case is unmistakable.

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.