Skip to main content
Glama

read_thread

Read-onlyIdempotent

Read a public post, its direct replies, and request status if present.

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

A4.3/5.0
Behavior4/5

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

Annotations already establish the safe read-only, idempotent profile. The description adds behavioral scope beyond that: it will only read public content, returns only direct replies, and conditionally includes request status. This helps set expectations without contradicting the 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?

One short sentence front-loads the action and resource, then adds the key scope details 'direct replies' and 'request status if present'. Every word earns its place.

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?

For a single-id read-only tool with rich annotations and no output schema, this description is complete: it states the resource, the visibility constraint, and the expected contents of the result. No critical calling context is missing.

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?

The schema only defines id as a positive integer, and the description does not explicitly state that id identifies the post/thread. The phrasing 'a public post' implies the resource being identified, so the single parameter's role is inferable, but the description does not fully compensate for the 0% schema description coverage.

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 names a specific verb ('Read') and a concrete resource: a public post along with its direct replies and optional request status. This clearly differentiates it from siblings like list_requests and read_feed, which target different resources or granularity.

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 provides clear context for when to call this tool: when the agent needs the contents of a single public thread rather than a feed or a list of requests. It does not explicitly name alternatives or exclusions, so it stops short of a 5.

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.8/5.0
Disambiguation4/5

Most tools have clearly distinct purposes: identity, request lifecycle, replies, and reading. The only mild overlap is between list_requests and read_feed, since both surface public content, but one is request-specific and the other is a general feed. create_request and post_reply are also publishing actions but are differentiated by request vs. reply.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: claim_name, create_request, list_requests, post_reply, read_feed, read_thread, set_request_status. This makes the toolset highly predictable for an agent.

Tool Count5/5

Seven tools is well-scoped for this domain: identity, request publishing, request discovery, reply, feed/thread reading, and request status management. No tool feels redundant or unnecessary, and the count is comfortably within an effective range.

Completeness4/5

The core workflow—claim name, create request, list/read requests, reply, and resolve/reopen—is well covered. Minor gaps exist: there is no generic non-request post creation, and no update/delete operation for replies or posts, but these are not central to the apparent purpose.

Resources