Skip to main content
Glama
citerocket-hq

CiteRocket MCP

Official

get_post_by_id

Read-only

Retrieve a specific Reddit post by its ID to access its content directly. Use this tool when you need the full details of a known post identifier.

Instructions

Fetch one post by id

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesReddit post id, e.g. 1sgjld3

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds a minimal behavioral trait ('one post by id') but does not detail return format, error behavior, or any other context beyond the annotation.

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 five-word sentence with no filler. The core purpose is front-loaded and every word contributes meaning.

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 one-parameter read-only fetch, the description combined with the schema and readOnlyHint covers the essentials needed to invoke the tool correctly. Return shape and error details could be added, but they are not critical for this simple lookup tool.

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% for the single required 'id' parameter, and the schema already provides type and an example. The description adds no new parameter semantics beyond the core 'by id' concept, so the baseline of 3 is appropriate.

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?

Description uses a specific verb ('Fetch'), names the resource ('post'), and identifies the lookup key ('by id'). The singular 'one' distinguishes it from sibling get_posts, so an agent can clearly select this tool for single-post lookups.

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

Usage Guidelines3/5

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

The phrase 'by id' implies the tool should be used when the agent has a specific Reddit post id and needs that one post. However, it does not explicitly mention alternatives like get_posts or get_comments, nor does it state when not to use this tool.

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