Reddit MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation4/5
Tools have distinct primary purposes: browsing a subreddit, searching, reading comments, and multi-subreddit monitoring. However, reddit_search_posts and reddit_monitor_subreddits both involve keyword filtering, which could cause confusion despite their different contexts.
Naming Consistency5/5All tools follow a consistent 'reddit_verb_noun' pattern in snake_case, making the naming predictable and easy to navigate.
Tool Count5/5Four tools is well-scoped for a read-only Reddit intelligence server, covering essential monitoring and search operations without unnecessary bloat.
Completeness4/5The toolset covers the core read and monitoring workflow: fetching posts, searching, reading comments, and filtering multiple subreddits. Minor gaps exist, such as retrieving a single post by ID or subreddit metadata, but these are not critical for its stated purpose.
Average 4.2/5 across 4 of 4 tools scored. Lowest: 3.6/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare this as a safe read-only, idempotent operation. The description adds the return structure (titles, scores, comment counts, permalinks, text previews) but doesn't disclose any additional behavioral traits like rate limits or error handling. With high annotation coverage, this is acceptable but not exceptional.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a purpose statement, usage note, Arg list, and return summary. It is front-loaded and readable, though the Args section somewhat duplicates the schema, making it slightly longer than necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with no output schema, the description covers purpose, usage, parameters, defaults, and return fields. It is sufficient for an agent to decide when and how to invoke it, though it omits explicit differentiation from siblings and edge-case handling.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description restates parameter details but adds minimal new semantics—only example subreddit names. It does not clarify semantics beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches posts from a specific subreddit with sort options (hot, new, top, rising). While it doesn't explicitly name sibling alternatives, the 'from a specific subreddit' phrase differentiates it from search or comment tools, but not as strongly as naming alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says 'Use this to monitor target communities for recent discussions, pain points, and engagement opportunities,' which provides clear context for when to use. It does not explicitly mention when not to use it or point to siblings, so it falls short of the top score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the description only needs to add behavioral context. It does so by specifying that only posts matching at least one keyword are returned, and that results are grouped by subreddit with scores, comment counts, and links. No mention of rate limits or edge cases, but it gives solid insight beyond 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a one-sentence summary, followed by a contextual use case and a structured Args breakdown. Every sentence adds value, and the Returns section clearly describes the output. It is appropriately sized for a tool with five parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Since there is no output schema, the description must explain the return value, which it does with a clear summary of grouped, keyword-matched posts with scores, comment counts, and links. The main gaps are the time enum inconsistency and a lack of detail on the exact post fields returned, but overall it covers the essentials.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description repeats parameter examples and defaults, which is helpful, but it introduces a discrepancy: it lists the time window as 'hour, day, week, month' while the schema enum also includes 'year' and 'all'. This could mislead an agent into thinking those values are invalid.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scans multiple subreddits for posts matching keywords and returns filtered results. It distinguishes itself from sibling tools (get_posts, search_posts, get_comments) by focusing on multi-subreddit monitoring with keyword filtering, and the 'primary tool for weekly Reddit intelligence digests' clarifies its niche.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly identifies the primary use case ('weekly Reddit intelligence digests') and explains that it scans target communities and filters for relevant discussions. However, it does not explicitly mention when not to use it or compare with alternatives, so it falls 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.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds value by specifying the return structure (titles, scores, comment counts, permalinks, text previews) and clarifying scoping behavior (omit subreddit for all Reddit), which goes beyond the structured safety annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured: purpose, usage context, args list, and return value summary. It is slightly repetitive with the schema (e.g., defaults and enums are repeated), but every sentence contributes info and there is no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description covers return values explicitly. It addresses purpose, usage, parameters, and output, making the tool self-contained. For a search tool with moderate complexity, this is sufficient and complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description enhances parameters with concrete examples (e.g., 'compliance training outdated') and clarifies subreddit formatting (without r/ prefix), adding meaning beyond the schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search Reddit posts by keyword, optionally limited to a specific subreddit'—a specific verb and resource. It distinguishes itself from siblings like reddit_get_posts and reddit_get_comments by focusing on searching rather than direct retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear usage context: 'Use this to find discussions about specific topics, pain points, competitors, or industry signals across target communities.' However, it does not explicitly state when not to use it or mention alternatives, so it lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint: true and idempotentHint: true. The description adds that it returns top-level comments only (not nested), and explicitly states the output fields: author, score, body text, and timestamps. This goes beyond the annotations by clarifying the scope of results and the response content.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a one-sentence purpose, followed by usage context, a clean Args section, and a returns line. Each section is purposeful and well-structured; no redundant clutter beyond what helps an agent quickly parse the tool's interface.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 5 parameters and no output schema, the description covers purpose, usage scenarios, parameter details, and return value. The 'Returns' line is especially important since no output schema exists, and the inclusion of the post_id URL pattern aids practical usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by providing a concrete URL example for post_id ('1j8k3f2') and restating the sort options with defaults, making the parameters more actionable than the raw schema. This grounds the abstract fields in real-world usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with 'Fetch top-level comments from a specific Reddit post,' a specific verb+object phrase that clearly states the tool's function. It distinguishes itself from sibling tools like reddit_get_posts (posts) and reddit_search_posts (searching) by focusing on comments for a given post.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: 'Use this to read the full discussion in a thread' and lists concrete use cases (community sentiment, buyer language, engagement). It does not explicitly call out when not to use it or name alternatives, but the context is sufficient to guide an AI agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vnnivas/reddit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server