Skip to main content
Glama
differentstuff

Session Think MCP

Think Tool

think

Preserve reasoning across sessions by storing thoughts with structured session names. Retrieve prior analysis to maintain context for complex problem-solving.

Instructions

A persistent thinking workspace that preserves reasoning across sessions.

IMPORTANT: Always provide a sessionName parameter with format: category:name:subcategory Examples:

  • thesis:NVDA:ai_dominance

  • topic:research:quantum_computing

  • project:website:redesign

If no sessionName is provided, a temporary session will be generated (TEMP:timestamp:random).

The sessionName is used to store and retrieve your thoughts. Use consistent naming to maintain context across conversations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoOptional thinking mode to structure your reasoning
tagsNoOptional tags for categorizing thoughts
reasoningYesYour thinking, reasoning, or analysis text
relates_toNoID of thought this relates to
sessionNameNoSession name in format: category:name:subcategory (e.g., thesis:NVDA:ai_dominance). IMPORTANT: Always provide this for persistent sessions.
relationship_typeNoType of relationship to the referenced thought

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.1

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose real behavior: durable cross-session persistence and an auto-generated TEMP session when sessionName is absent. It does not explain what happens to reasoning afterward, how relationships (relates_to/relationship_type) are resolved, or any retention/visibility characteristics.

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

Conciseness4/5

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

The purpose leads, followed by a clearly flagged IMPORTANT block and concrete examples, so the most actionable content is front-loaded. There is minor redundancy between the body text and the schema's sessionName description, but no wasted padding.

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?

For a six-parameter tool with no annotations and no output schema, the description covers session handling well but leaves the reasoning-graph side (relates_to and relationship_type enums) and the return behavior unexplained. An agent can call it, but cannot fully predict how thoughts link or what comes back.

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?

Schema description coverage is 100%, so all six parameters are already documented in the schema, making 3 the baseline. The description reinforces sessionName format and persistence semantics, but adds nothing about mode, tags, relates_to, or relationship_type beyond what the schema already says.

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

Purpose3/5

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

The description frames the tool as 'a persistent thinking workspace that preserves reasoning across sessions,' which conveys the general intent but never states the concrete action (recording/storing a unit of reasoning). Sibling tools (list_sessions, view_session, search_in_session) make clear this is the write side of a session-based store, but the description doesn't explicitly position itself that way.

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

Usage Guidelines3/5

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

It gives strong guidance on the sessionName parameter (always supply it, use consistent naming for cross-conversation context) and states the fallback when it is omitted. However, it never says when to reach for think versus the sibling retrieval/search tools, so the routing guidance is only implied.

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