Skip to main content
Glama

reddit-mcp-server

Server Details

Post + comment + subreddit search with comment-level depth for sentiment work.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 2 of 2 tools scored.

Server CoherenceB
Disambiguation4/5

The two tools have distinct purposes: get_subreddit browses a subreddit's posts by sort order, while search_reddit queries for posts by search terms. Though both return posts, the presence of a required query in search_reddit clearly separates their functionality.

Naming Consistency4/5

Names follow a verb_noun pattern (get_subreddit, search_reddit) and are lowercase with underscores. However, get_subreddit is slightly misleading because it actually retrieves posts from a subreddit, not the subreddit itself, which creates minor ambiguity.

Tool Count3/5

With only 2 tools, the server feels thin, but it is borderline for a narrow use case of simply reading Reddit posts. The scope is limited enough that 2 tools could be acceptable, though most servers would benefit from additional capabilities.

Completeness2/5

The server only supports reading posts via subreddit browsing and search. It lacks comment retrieval, posting, voting, user info, and other standard Reddit operations, which are significant gaps for a server named 'reddit-mcp-server'.

Available Tools

2 tools
get_subredditA
Read-only
Inspect

Get posts from a subreddit. Returns titles, scores, comments. Args: subreddit: Subreddit name (e.g. 'technology') sort: Sort order: 'hot', 'new', 'top' (default 'hot') max_results: Max posts (default 25)

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNohot
subredditYes
max_resultsNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, and the description adds value by stating what is returned (titles, scores, comments) and detailing sort options and defaults. This provides behavioral context beyond the structured fields, though it doesn't disclose potential errors or limits.

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 compact and front-loaded: one purpose sentence followed by a clear argument list. Every sentence is informative and there is no redundancy, making it easy for an agent to parse quickly.

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?

With no output schema, the description explicitly states the return fields (titles, scores, comments) and documents all parameters. It does not cover error cases or rate limits, but for a simple read-only tool this is sufficient and complete enough for invocation.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries full responsibility for parameter meaning. It does this well: it gives an example for subreddit, lists valid sort values ('hot', 'new', 'top'), and specifies defaults for both sort and max_results, adding significant meaning beyond the raw schema.

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

Purpose4/5

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

The description clearly states the verb and resource: 'Get posts from a subreddit' and even lists the return fields (titles, scores, comments). While it does not explicitly differentiate from sibling tool search_reddit, the purpose is specific enough to be understood.

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 use case is implied: fetching posts from a specific subreddit. However, there is no explicit when-to-use or when-not-to-use guidance, and no mention of the sibling search_reddit as an alternative, leaving the decision to the agent.

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

search_redditA
Read-only
Inspect

Search Reddit posts. Returns titles, scores, comments, and content. Args: query: Search query (e.g. 'best programming language') subreddit: Specific subreddit (optional, e.g. 'programming') max_results: Max posts (default 20)

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
subredditNo
max_resultsNo
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is clear. The description adds useful behavioral context by specifying the return content (titles, scores, comments, content) and the default max_results. However, it does not disclose rate limits, sorting behavior, or potential limitations.

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 concise, with a clear opening sentence and a structured parameter list. Every element provides value, and the format is easy to scan.

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 read-only search tool with 3 parameters, the description covers the essential inputs and outputs. It lacks details about result ordering or result count limits beyond the default, but these are not critical given the straightforward nature of the tool and the presence of an output-free schema.

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

Parameters5/5

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

Schema description coverage is 0%, so the description fully compensates by explaining each parameter with examples: query ('best programming language'), subreddit ('programming'), and max_results (default 20). This goes well beyond the bare schema definitions.

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 clearly states the tool's function: 'Search Reddit posts' and what it returns ('titles, scores, comments, and content'). This distinguishes it from the sibling tool 'get_subreddit', which presumably retrieves subreddit metadata rather than searching posts.

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 description implies usage through the optional 'subreddit' parameter and provides concrete query examples, but it does not explicitly state when to use this tool versus the sibling 'get_subreddit' tool. There is no exclusion or alternative guidance.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables comprehensive Reddit research through a three-layer architecture that discovers relevant communities, provides operation guidance, and executes multi-subreddit content fetching with proper citations. Supports searching, post fetching, comment analysis, and batch operations across multiple subreddits for thorough content analysis.
    Last updated
    3
    223
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Enables AI agents to research customer voice by searching Reddit and extracting structured comments from supported community platforms via MCP.
    Last updated

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources