Skip to main content
Glama

scratchpad_read

세션의 특정 키 값을 조회합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes조회할 키
session_idYes세션 식별자

Schema Changelog

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

  1. First observed

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only states the operation ('look up value') and lacks detail on behavior for missing keys, return format, or guarantees that no side effects occur. It is truthful but minimal.

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?

One short, front-loaded sentence conveys the entire purpose without redundancy. Every word earns its place.

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?

For a simple read tool with two well-documented parameters, the description adequately conveys the core operation and implies the return value. However, since there is no output schema, it could better specify the return format or behavior when a key is absent.

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 coverage is 100% with both 'session_id' and 'key' described. The description adds no additional parameter semantics beyond the schema, so the baseline score of 3 applies.

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

Purpose4/5

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

The description '세션의 특정 키 값을 조회합니다' provides a specific verb (조회/query) and resource (specific key value in the session). It clearly indicates a read operation and is distinguishable from sibling tools like scratchpad_write and scratchpad_delete, though it doesn't explicitly name them.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool instead of scratchpad_list, diff, or write. There are no exclusions, prerequisites, or alternative recommendations, leaving the agent to infer appropriate usage from the tool name.

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

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: checkpoint saves snapshots, delete removes keys, diff compares values, list enumerates keys, read retrieves values, and write stores values. No overlap or ambiguity exists among them.

Naming Consistency5/5

All tools follow a consistent 'scratchpad_' prefix with a concise verb (checkpoint, delete, diff, list, read, write). The snake_case naming is uniform and predictable.

Tool Count5/5

Six tools is well-scoped for a key-value store with checkpointing functionality. Each tool serves a distinct and necessary purpose without redundancy or bloat.

Completeness4/5

The surface covers the core CRUD operations (write, read, list, delete) plus checkpointing and diffing. A restore-from-checkpoint operation is missing, but agents can work around this by reading checkpoint values and writing them back.