Skip to main content
Glama

reddit_verify_comments

Read-only

Check whether Reddit comments still exist and are publicly visible in batches of up to 100 ids. Distinguishes author-deleted from moderator-removed comments and returns a status for each id.

Instructions

Check whether specific Reddit comments still EXIST and are publicly visible, in one batch of up to 100 ids. A READ despite being a POST (ids travel in the body because a hundred of them do not fit in a URL); it costs the same as any other read and changes nothing on Reddit. Use it to tell 'deleted by the author' from 'removed by a moderator' from 'still there', which a normal comment fetch cannot distinguish, and to re-check a list of comments you posted or collected earlier. Accepts bare ids and t1_-prefixed fullnames interchangeably. Returns one row per id, in the order you sent them, each with a status. Example: ids=['n5abcde','t1_n5fghij'].

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesComment ids to check, 1 to 100 per call. Bare id ('n5abcde') or fullname ('t1_n5abcde'), mixed freely. Reddit's own batch lookup caps at 100; split larger lists across calls. Required.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.3

TDQS

A4.4/5.0
Behavior5/5

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

Adds genuinely non-obvious context beyond the annotations: the endpoint is a POST even though it is a read (ids in the body because 100 do not fit in a URL), and it is cost-equivalent to a read with no state change on Reddit. This resolves the apparent conflict an agent would see between the HTTP method and the readOnlyHint annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the core purpose and the batch limit, and every sentence carries information. The parenthetical about ids in the body and the 'costs the same as any other read' clause partly restate the readOnly/non-destructive annotation, making it slightly longer than needed.

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?

No output schema exists, so the description supplies the return shape: one row per id, in submission order, each with a status. Combined with the batch limit, format flexibility, and the read-nature clarification, an agent has everything needed to call it correctly.

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 description coverage is 100%, so the schema already documents the id format, the 1–100 bounds, and bare-vs-t1_ fullname mixing. The description restates the bare/fullname interchangeability and adds a concrete example, but adds no semantics the schema lacks; baseline 3 applies.

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?

States a specific verb and resource with precise scope: existence/visibility checking for a batch of comment ids up to 100. It is immediately distinguishable from reddit_search_comments, reddit_by_id, and reddit_post_visibility because it operates on known ids and returns status rather than content.

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?

Gives concrete when-to-use framing: distinguishing 'deleted by author' from 'removed by moderator' from 'still there', and re-checking previously posted or collected comments. It contrasts against 'a normal comment fetch' implicitly but never names the sibling tool (e.g. reddit_search_comments or reddit_by_id) an agent should prefer for content retrieval.

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