Skip to main content
Glama

Read ephemeral paste

paste.read
Read-onlyIdempotent

Retrieve an ephemeral paste by its ID for agent handoff before TTL expiry. Access data shared via paste.write to continue workflows securely.

Instructions

GET /v1/paste — retrieve an ephemeral paste by id from paste.write before TTL expiry. Agent handoff only — not a vault.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPaste id returned by paste.write. Example: 'a1b2c3d4e5f6'.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.4

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive. The description adds meaningful behavioral context beyond annotations: the paste is ephemeral, has a TTL expiry, exists solely for agent handoff, and is not a long-term vault. No contradiction exists between annotations and description.

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 short sentences: one states the HTTP GET method and retrieval purpose, the other adds the usage boundary ('Agent handoff only – not a vault'). Each sentence is needed and impactful; no redundancy.

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 one-parameter, read-only tool with no output schema, the description covers the core essentials (what to retrieve, the source, and the expiration condition). It does not specify error behavior if the TTL is exceeded, but for this level of complexity it is nearly sufficient.

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 a thorough description of the 'id' parameter (returned by paste.write, example provided). The description text does not add further parameter-level meaning beyond restating that the paste id comes from paste.write and is relevant before TTL, so it stays at the baseline.

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 states a specific verb ('retrieve'), a resource ('ephemeral paste'), and the source ('by id from paste.write'), while noting the TTL constraint. It clearly differentiates from the write sibling and from being a vault, so an agent immediately knows what it does.

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 it for agent handoff before the TTL expires, and explicitly says it is not a vault for long-term storage. It does not name sibling tools as alternatives (e.g., url.open for direct reads), so it lacks explicit when-not-to-use but provides enough situational guidance.

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