Skip to main content
Glama

get_record

Retrieve a record by id, including signature verification status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

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

  1. First observed

TDQS

B3.1/5.0
Behavior3/5

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

No annotations exist, so the description carries full responsibility. 'Retrieve' implies a read-only operation, and 'including signature verification status' adds a useful behavioral detail. However, it does not disclose behavior for missing ids, error cases, or side effects, leaving some uncertainty for a tool without annotations.

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?

The description is a single, tightly written sentence with no filler. It front-loads the primary action and resource, and every word contributes to understanding the tool's purpose.

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?

With a single required parameter and no output schema, the description provides a basic but incomplete picture. It states what is retrieved, including verification status, but does not describe the response structure, error semantics, or how this tool relates to verify_record specifically. This is sufficient for a minimal get-by-id tool but leaves notable 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 coverage is 0%, so the description must add meaning beyond the raw schema. It does indicate that the id parameter identifies the record, but this is largely redundant with the parameter name and the tool name. No additional detail is provided about id format, examples, or accepted values.

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 clearly states a specific verb ('Retrieve'), resource ('a record'), and key ('by id'), which distinguishes it from list_records. The phrase 'including signature verification status' adds useful scope, though it could more explicitly differentiate from verify_record.

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 explicit guidance on when to use get_record versus sibling tools such as verify_record or list_records. The verification status mention implies overlap with verify_record, but the description does not clarify which tool should be chosen for which scenario.

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

B3.4/5.0
Disambiguation5/5

Each tool targets a distinct action: discovery, submission, retrieval, listing, verification, and critique. There is no meaningful overlap between record operations and protocol discovery.

Naming Consistency4/5

Most tools follow a verb_noun pattern (submit_record, get_record, list_records, verify_record, critique_record). 'discover' is a single-word verb, which is a minor deviation but still readable and predictable.

Tool Count5/5

Six tools is a well-scoped set for an append-only record system. Each tool covers a necessary capability without redundancy or bloat.

Completeness4/5

The core lifecycle of an append-only record system is covered: submit, retrieve, list, verify, and critique. A minor gap is the lack of a way to list critiques targeting a specific record, but agents can likely work around this via list_records.