Skip to main content
Glama
YangLiangwei

PersonalizationMCP

by YangLiangwei

get_reddit_token_status

Check whether your Reddit access token is valid and active, so you can identify authentication issues before making API requests.

Instructions

Get Reddit token status information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
random_stringNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

D1.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only says 'Get... status information', which vaguely implies a read operation, but it does not state whether the call has side effects, what happens if the token is missing/expired, or whether it may trigger a refresh. The single vague clause does not meaningfully disclose behavior.

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

Conciseness2/5

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

The text is short and free of fluff, but it is under-specified rather than genuinely concise. The sentence merely restates the name and adds no useful detail, so it does not 'earn its place' as a helpful explanation.

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

Completeness1/5

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

For a tool with no annotations, a mysterious dummy-like parameter, and a sibling set full of token-related operations (test, refresh, auto_refresh), the one-line description is far from complete. It does not explain what the output status indicates, how to react to it, or how it relates to adjacent tools.

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

Parameters1/5

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

The input schema includes a 'random_string' parameter with a default of '' and no description. Schema description coverage is 0%, and the description completely ignores this parameter, leaving the agent unable to know whether it is required, what it does, or how to set it. The description must compensate when the schema is empty, but it does not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description 'Get Reddit token status information.' essentially restates the tool name without clarifying what 'token status' means (validity, expiry, scopes, etc.). It also does not differentiate from closely related siblings like test_reddit_credentials or refresh_reddit_token, so an agent cannot confidently select this tool over others.

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?

There is no guidance about when to use this tool versus alternatives. The description gives no context such as 'use after OAuth setup to verify token validity' or exclusions like 'use refresh_reddit_token to renew expired tokens'. This leaves the agent without direction.

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

Deploy Server

Other Tools