Skip to main content
Glama

goal-read-evidence-content

Read-onlyIdempotent

Read attached evidence through MCP without changing its format. Pass evidenceId from goal-get. Text (text/plain, JSON, NDJSON) returns newline-preserving redacted lines; offset/limit are zero-based line pagination. Images return a native MCP image with original MIME and bytes. For a complete video, PDF, ZIP or other binary, binaryDelivery=link (default) returns a resource_link to the authenticated original download — no base64 and no conversion. If the client cannot open external links, binaryDelivery=base64 embeds the exact original bytes in a resource blob; this expands data by about 33% plus JSON overhead and can consume the client context window, so use it only when needed. byteOffset/byteLimit require binaryDelivery=base64. Text secrets are redacted; binary evidence is unmodified.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of whole lines to return (1–500)
offsetNoZero-based line offset
byteLimitNoNumber of bytes to return for binary evidence; omit with byteOffset for the complete original
byteOffsetNoZero-based byte offset for binary evidence
evidenceIdYesUUID of file-backed evidence from goal-get
binaryDeliveryNoComplete binary: link to the original (default), or base64 fallback for clients without external linkslink

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / binaryDelivery
      Added value: +{
      +  "default": "link",
      +  "description": "Complete binary: link to the original (default), or base64 fallback for clients without external links",
      +  "enum": [
      +    "link",
      +    "base64"
      +  ],
      +  "type": "string"
      +}
  2. Added

TDQS

A5/5.0
Behavior5/5

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

Annotations declare readOnlyHint and idempotentHint, but the description adds substantial behavioral detail: text secrets are redacted, binary evidence is unmodified, images return native MCP images, and binary delivery has two modes with distinct trade-offs. This goes well beyond the annotations and helps the agent anticipate outcomes.

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 dense paragraph that front-loads the core action and then systematically covers text vs binary behavior, delivery options, and parameter requirements. Every sentence adds operational value—no fluff or redundancy. The structure is logical and easy to parse.

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

Completeness5/5

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

Despite the complexity of the tool (binary vs text, pagination, redaction, delivery modes, and output types), the description covers everything an agent needs: how to obtain evidenceId, how text and images are returned, how to handle binaries via link or base64, and the trade-offs of each. With no output schema, the description carries the full burden and meets it.

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

Parameters5/5

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

Although schema coverage is 100%, the description adds crucial parameter semantics not fully captured in the schema: offset/limit are zero-based line pagination for text, byteOffset/byteLimit require binaryDelivery=base64, and binaryDelivery=link returns a resource_link to the authenticated original download. This clarifies how parameters interact and their practical implications.

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 clearly states the tool's purpose: 'Read attached evidence through MCP without changing its format.' It specifies the resource (evidence) and the action (read), and it explicitly tells the agent to 'Pass evidenceId from goal-get,' which ties it to the sibling goal-get tool. This differentiates it from other goal-* tools that create, attach, or modify evidence.

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

Usage Guidelines5/5

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

The description gives precise usage instructions: it explains when to use link vs base64, when byteOffset/byteLimit are required, and notes that base64 expands data and can consume context window, so 'use it only when needed.' It also instructs the agent on how to obtain evidenceId from goal-get. This is explicit when-to-use and when-not-to-use guidance.

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.

Resources