reddit-mcp-server
Provides a zero-config fallback search provider when Reddit API credentials are absent, allowing retrieval of Reddit-related content via DuckDuckGo.
Enables AI models to search, fetch, read, and deep-dive into Reddit threads and comments, with rate-limit handling and smart comment filtering.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@reddit-mcp-serversearch Reddit for the best travel destinations in Europe"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Reddit MCP Server
Give your AI assistant a live, structured window into Reddit β zero API keys required.
Reddit MCP Server is an open-source Model Context Protocol (MCP) server that connects AI assistants (Claude, Cursor, Open WebUI, and more) to Reddit's content in real time. It provides structured tools for searching discussions, extracting community opinions, and tracking niche trends β with a resilient multi-tier fallback engine that works even without any credentials.
# Get started in one command β no sign-up, no API keys
uvx reddit-mcp-aiπΊοΈ How it Works (Data Flow Sequence)
Here is a visual sequence diagram showing how the AI model interacts with this server, including our Zero-Config Fallback system:
sequenceDiagram
autonumber
actor AI as AI Assistant (Claude/Cursor)
participant MCP as FastMCP Server (STDIO)
participant Tools as Application Tools
participant Reddit as Reddit API (OAuth)
participant Fallback as DDG & Arctic Shift
AI->>MCP: Request (e.g., search_knowledge)
MCP->>Tools: Route request
Tools->>Reddit: Attempt Fetch (Resilient HTTP)
alt Has OAuth Credentials & API Healthy
Note over Reddit,Tools: Handles 429 (Rate Limits) with Retry-After backoff!
Reddit-->>Tools: Return Official JSON payload
else Zero-Config OR Reddit API Fails
Note over Tools,Fallback: Graceful Degradation Active
Tools->>Fallback: Execute Search / Fetch Archive
Fallback-->>Tools: Return Alternative JSON payload
end
Tools->>Tools: Refine comments (filter bots & short noise)
Tools-->>MCP: Map to Domain Models (Pydantic)
MCP-->>AI: Return clean JSON-RPC Response (stdout-safe)Related MCP server: Reddit Buddy MCP
β¨ Features
π Zero-Config Ready: Works completely out of the box. No Reddit API keys required β it falls back automatically to DuckDuckGo and the Arctic Shift archive.
π‘οΈ Cascading Multi-Tier Engine:
Official OAuthβSession CookieβBrowser-Impersonated JSONβArctic Shift RSSβDDG. The AI always gets data, even when Reddit is rate-limiting or credentials are missing.π¦ Built-in Anti-Ban Shields: Token bucket rate limiter, global concurrency semaphore, and singleflight request coalescing prevent WAF 403 blocks and IP bans under heavy AI traffic.
οΏ½ Resilient HTTP Client: Exponential backoff with
Retry-Afterrespect, a bounded 14-second aggregate deadline, and automatic OAuth token self-healing on mid-flight 401s.π€ LLM-Safe Filtering: Drops AutoModerator, bots, and low-signal comments before they reach the model β saving tokens and reducing noise.
β±οΈ Strict Timeout Protection: Decorator-enforced timeouts return clean JSON-RPC fallbacks instead of hanging the AI client.
π STDIO & SSE Transport: Runs as a local CLI tool for Claude/Cursor or as a Docker microservice on port
8000for Open WebUI, LibreChat, and n8n.
π§° Available Tools
Tool Name | Purpose | Best Used For |
| Broad web search via DuckDuckGo | Finding technical explanations and factual discussions across Reddit. |
| Discussion search with metrics | Gauging sentiment, upvote consensus, and topic exploration. |
| Deep comment tree extraction & filtering | Reading high-quality community opinions with noise & bots removed. |
| Live trending & rising posts tracker | Identifying real-time problems, pain points, or new ideas in a niche. |
| The user's own saved posts over a time period | Revisiting, summarizing, or triaging bookmarked content (requires the saved-items feed URL). |
βοΈ Prerequisites & Setup
Requirements
Python 3.11 or higher
Reddit API App credentials (Optional, but recommended for live trending data & better rate limits)
Quick Start
You can run this server directly without installation using uvx (recommended) or pipx:
# Run locally (STDIO mode) for Cursor/Claude
uvx reddit-mcp-ai
# OR run as a background service (Streamable HTTP mode) for Open WebUI / Web clients
uvx reddit-mcp-ai --transport http --host 0.0.0.0 --port 8000Configure your environment (Optional):
To unlock the official Reddit API, Cookie Authentication, or Saved Posts, you can either inject environment variables via your MCP client config, or create a global configuration file at ~/.config/reddit-mcp-server/.env (Mac/Linux) or %APPDATA%\reddit-mcp-server\.env (Windows):
# Optional: Official Reddit App Credentials
REDDIT_CLIENT_ID="your_client_id_here"
REDDIT_CLIENT_SECRET="your_client_secret_here"
# Optional: Direct Cookie Auth (Instant sub-second access & pagination)
# Extract from DevTools -> Application -> Cookies -> reddit_session (Use an alt account)
REDDIT_SESSION_COOKIE="your_reddit_session_cookie_here"
# Optional: Concurrency & Rate Limiting Shields
REDDIT_MAX_CONCURRENCY=4
REDDIT_RATE_LIMIT_PER_MINUTE=40Consider also setting REDDIT_USER_AGENT to a descriptive, unique value β Reddit's API guidelines ask for this, even in zero-config mode. If unset, the server generates a default with a random per-install suffix (persisted under your XDG state directory so it stays stable across restarts).
To enable the get_saved_posts tool, add your private saved-items feed URL:
REDDIT_SAVED_RSS_URL="https://www.reddit.com/user/YOUR_USERNAME/saved.rss?feed=YOUR_FEED_TOKEN&user=YOUR_USERNAME"While logged in, open reddit.com/prefs/feeds/ and copy the exact link for "your saved links". The feed token is a credential for your account β treat it like a password (the server never logs it and rejects non-Reddit hosts). The feed exposes the most recent ~100 saved items; scores and comment counts are not available through it.
π³ Docker Installation
A multi-stage Dockerfile is provided. The container is configured to run in SSE (HTTP) mode by default on port 8000, making it a perfect microservice.
# Build the image
docker build -t reddit-mcp-server .
# Run it in the background
docker run -d -p 8000:8000 --name reddit-mcp reddit-mcp-serverDocker Compose Example
services:
reddit-mcp:
build: .
container_name: reddit-mcp
ports:
- "8000:8000"
restart: unless-stopped
environment:
# Optional Configuration
- REDDIT_CLIENT_ID=your_id_optional
- REDDIT_CLIENT_SECRET=your_secret_optionalNote: If using Docker with STDIO mode, replace the command in client configs with
dockerand arguments withrun -i --rm reddit-mcp-server.
π οΈ Configuration for AI Clients
1. Claude Desktop
Edit your configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Simple / Zero-Config Setup (Recommended):
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": [
"reddit-mcp-ai"
]
}
}
}Full Setup with Optional Features (OAuth & Saved Posts):
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": [
"reddit-mcp-ai"
],
"env": {
"REDDIT_CLIENT_ID": "your_client_id_here",
"REDDIT_CLIENT_SECRET": "your_client_secret_here",
"REDDIT_SAVED_RSS_URL": "your_feed_url_here"
}
}
}
}2. Cursor / OpenCode
Go to Settings > Features > MCP and add a new command-based server:
Type: command
Name: Reddit
Command:
uvx reddit-mcp-aiEnv: (Optional) Add
REDDIT_SAVED_RSS_URLand your feed link here if you want to use the saved posts feature.
3. Open WebUI (and other Web Clients)
When running the server via Docker or in Streamable HTTP mode:
Go to Admin Panel > Settings > External Connections / Tools.
Add a new MCP Server.
Type:
MCP (Streamable HTTP)URL:
http://localhost:8000/mcp(Usehttp://host.docker.internal:8000/mcpif Open WebUI is also running in Docker).
π§ͺ Developer Experience (DX) & Testing
We prioritize high test coverage. We mock all network traffic, ensuring tests run instantly and reliably.
Run Tests
# Install development dependencies (using uv β recommended)
uv sync --locked --extra dev
# Or with pip
pip install -e ".[dev]"
# Execute pytest
uv run pytest tests/Manual Testing with the MCP Inspector
npx @modelcontextprotocol/inspector uvx reddit-mcp-aiThis will launch a web browser UI where you can invoke the search_knowledge, explore_reddit_discussions, extract_public_opinion, and analyze_niche_trends tools directly and inspect the JSON responses.
π€ Contributing
Contributions are welcome! Here's how to get started:
Fork the repository and clone your fork.
Install dependencies:
uv sync --locked --extra devCreate a branch:
git checkout -b feature/your-feature-nameMake your changes, then lint and test:
uv run ruff check .
uv run ruff format .
uv run pytest tests/Open a pull request β CI will run automatically.
For architectural guidance, see docs/architecture.md.
To add a custom search provider, see src/reddit_mcp/infrastructure/search/providers/README.md.
Please read CONTRIBUTING.md and CODE_OF_CONDUCT.md before submitting.
π₯ Contributors & Special Thanks
A huge thank you to everyone who helps make the Reddit MCP Server better!
@brianluby β Major contributions to core architecture, security hardening, and resilience engineering.
Available Tools
5 toolsanalyze_niche_trendsA
Use this tool when asked to suggest ideas, find pain points, or discover opportunities in a specific niche (e.g., 'SaaS', 'Entrepreneur').
By looking at 'rising' or 'hot' posts, you can identify what problems users are actively struggling with RIGHT NOW.
Always compare the post's created_at with the current_server_date provided in meta_context.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| page_token | No | ||
| trend_type | No | rising | |
| subreddit_name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | The extracted posts. |
| status | No | Status of the request (e.g., success, partial_timeout). |
| message | No | System message or warning (especially if partial_timeout occurred). |
| data_source | No | Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable). |
| meta_context | Yes | Temporal and spatial context for the AI. |
| next_page_token | No | Pass this token to the tool again to fetch the next page. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral transparency. It mentions that it looks at 'rising' or 'hot' posts, but it does not disclose that the tool likely makes a network request (potential latency, API limits), or that results are dynamic based on current Reddit data. It doesn't explain that it may return posts outside the niche if not filtered properly. The description adds some behavioral context (using 'Rising' to find current struggles) but falls short of fully disclosing expected behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with three sentences that are directly relevant. It front-loads the primary use case, then adds a practical tip for the agent. No redundant information or filler; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 parameters, including a pagination token and trend type) and the absence of annotations, the description covers the essential semantics and usage guidance. However, it does not mention the output schema, which could be beneficial for agent understanding, but since an output schema exists, the description doesn't need to explain return values. The lack of detail on `limit` and `page_token` is a minor gap, but overall the description is sufficient for the agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meaning. It explicitly references `created_at` and `current_server_date`, and by mentioning 'rising' or 'hot' it indirectly explains `trend_type` as a way to filter posts. It also implies the use of `subreddit_name` to define the niche. While it doesn't detail `limit` or `page_token`, the description provides enough context for the key parameters, earning a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to analyze niche trends for suggesting ideas and finding pain points based on rising/hot posts. It explicitly names the resource (specific niche) and the action (analyze trends), and it distinguishes itself by focusing on identifying immediate user problems, unlike sibling tools which focus on knowledge search, general discussions, opinion extraction, or saved posts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool ('when asked to suggest ideas, find pain points, or discover opportunities in a specific niche') and implies when not to (e.g., for general discussions or knowledge searches). It also provides a key usage guideline: compare post dates with the current server date to ensure trends are recent, which is critical for the tool's intent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explore_reddit_discussionsA
STEP 2: SENTIMENT EXPLORATION. Use this to gauge public opinion and market acceptance.
Always check upvote_ratio: >0.8 = Positive, ~0.5 = Controversial.
Check age_in_days to ensure relevance. Use next_page_token to see more results.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | relevance | |
| limit | No | ||
| keyword | Yes | ||
| subreddit | No | ||
| page_token | No | ||
| time_filter | No | year |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | The extracted posts. |
| status | No | Status of the request (e.g., success, partial_timeout). |
| message | No | System message or warning (especially if partial_timeout occurred). |
| data_source | No | Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable). |
| meta_context | Yes | Temporal and spatial context for the AI. |
| next_page_token | No | Pass this token to the tool again to fetch the next page. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior, and it does so meaningfully: it reveals output fields (upvote_ratio, age_in_days, next_page_token), explains how to interpret them, and signals pagination. It could add limitations (e.g., rate limits, scope of data), but it gives a solid behavioral picture for a read-only exploration tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three short, front-loaded sentences with no filler. Each sentence earns its place: purpose, output interpretation, and pagination. The use of `code` formatting for field names is clean and scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 6 parameters, no annotations, and 0% schema coverage, the description is incomplete: it omits input parameter semantics and tool-selection context. It does cover purpose, key output interpretation, and pagination, and an output schema likely exists, which reduces the need to document return values. Overall, adequate but with clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but it only references next_page_token and output fields, not the actual input parameters. It does not explain keyword, sort, limit, subreddit, page_token, or time_filter. The agent is left to infer meaning from enum names and defaults, which is a significant gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: 'gauge public opinion and market acceptance' via Reddit discussions. It adds a step context ('STEP 2: SENTIMENT EXPLORATION') and specific behavioral cues (upvote_ratio, age_in_days), making the resource and intent clear. It does not explicitly differentiate from sibling tools like extract_public_opinion, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear use case: 'Use this to gauge public opinion and market acceptance,' and frames it as step 2 in a workflow. It offers practical guidance on interpreting results (upvote_ratio thresholds, age_in_days) and pagination. However, it gives no exclusions or alternatives despite likely overlap with sibling tools, so it lacks full when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_public_opinionA
DEEP DIVE TOOL: Use this ONLY after finding a relevant post via search tools.
This tool extracts PURE human opinions, filtering out noise, bots, and low-effort content.
Citations: You MUST use the comment_url for each specific quote in your final report.
Pagination: pass next_page_token to continue reading deeper comments.
Tokens are provider-prefixed (e.g. 'reddit:30:abc') and only the provider
that issued one can continue it.
| Name | Required | Description | Default |
|---|---|---|---|
| post_url | Yes | ||
| page_token | No | ||
| max_comments | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | The extracted comments. |
| status | No | Status of the request. |
| message | No | System message or warning. |
| data_source | No | Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable). |
| meta_context | Yes | Temporal and spatial context for the AI. |
| next_page_token | No | Pass this token to the tool again to fetch the next page of comments. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of transparency. It discloses important behaviors: filters bots/noise, requires citations using comment_url, supports pagination via next_page_token, and token ownership restrictions. While it doesn't mention auth or error handling, it covers the core behavioral traits needed for invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact (~70 words) but information-dense, using clear labels (DEEP DIVE TOOL, Citations, Pagination) to organize content. Every sentence serves a purpose: usage, filtering, citation, pagination, token behavior. No fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, the description provides a thorough operational picture: purpose, usage context, output requirements, pagination, and token constraints. It leaves out max_comments semantics and explicit platform scope (though 'reddit:' token example hints at Reddit), but overall it's sufficient for selecting and invoking the tool correctly. Output schema exists, so return format needn't be described.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains post_url implicitly and page_token (as next_page_token) well, including provider-prefixed token syntax. However, max_comments is not mentioned at all, leaving that parameter without semantic guidance beyond the schema's numeric constraints. Partial compensation for 2 of 3 parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a 'DEEP DIVE TOOL' that extracts 'PURE human opinions' from a post, filtering noise and bots. It distinguishes itself from sibling search/exploration tools by specifying it operates on a specific post found via search, making its purpose specific and non-overlapping.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Use this ONLY after finding a relevant post via search tools,' which clearly defines when the tool is appropriate. This provides strong guidance on prerequisites and differentiates it from search tools, even if not naming siblings directly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_saved_postsA
PERSONAL TOOL: fetches the USER'S saved Reddit posts from a defined time period (day/week/month/year/all), newest first. Use this to revisit, summarize, or triage content the user explicitly bookmarked. Note: the feed does not expose scores or comment counts; posts with thin titles are filtered out. Pagination is not supported for this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| time_filter | No | month |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | The extracted posts. |
| status | No | Status of the request (e.g., success, partial_timeout). |
| message | No | System message or warning (especially if partial_timeout occurred). |
| data_source | No | Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable). |
| meta_context | Yes | Temporal and spatial context for the AI. |
| next_page_token | No | Pass this token to the tool again to fetch the next page. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for behavioral disclosure. It transparently reveals that posts are fetched newest-first, lacks scores/comments, filters thin titles, and does not support paginationβcritical details for an agent's expectation management. This exceeds minimal disclosure and clearly states limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense paragraph, but every sentence adds unique value: what it does, use cases, and key limitations. It is slightly run-on but avoids redundancy. A sentence or two could be combined for better scanning, but it remains efficient and direct.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with only two optional parameters and an output schema (which presumably defines the return structure), the description covers all critical aspects: data scope, ordering, filtering edge cases, and unsupported features. It gives an agent sufficient context to decide when to call this tool and what to expect from the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, meaning the description must add parameter understanding. While it explains the 'defined time period' concept matching time_filter and implies limit behavior via 'no pagination', it never names the parameters or adds detail about them (e.g., default limit=50, max=100). The description is vague regarding how limit behaves beyond absence of pagination, earning a baseline score given schema already documents the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches the user's saved Reddit posts for a defined time period, with a clear verb+resource combination. It even specifies use cases ('revisit, summarize, or triage') and distinguishes itself from typical feed tools by emphasizing its personal nature, effectively separating it from the sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit when-to-use guidance ('Use this to revisit, summarize, or triage content the user explicitly bookmarked') and notes limitations (no scores/comment counts, filtered thin titles, no pagination). However, it does not explicitly name alternatives for when to use sibling tools, so it falls slightly 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.
search_knowledgeA
STEP 1: FOUNDATION SEARCH. Use this to find factual threads or technical explanations. This uses a broad web-search (DuckDuckGo) to find Reddit threads that Reddit's own search might miss. Note: Pagination is not supported for this specific tool.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| subreddit | No | ||
| time_filter | No | all |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | Yes | The extracted posts. |
| status | No | Status of the request (e.g., success, partial_timeout). |
| message | No | System message or warning (especially if partial_timeout occurred). |
| data_source | No | Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable). |
| meta_context | Yes | Temporal and spatial context for the AI. |
| next_page_token | No | Pass this token to the tool again to fetch the next page. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It transparently discloses that it uses DuckDuckGo and that pagination is not supported, which helps agents understand result scoping. It does not mention rate limits or auth, but for a read-only search tool the disclosed traits are helpful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is tightly written in three short sentences with no filler. Each sentence adds value: purpose, mechanism, and a key limitation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The output schema and input schema cover the technical fields, and the description supplies workflow positioning and the no-pagination constraint. This is enough for an agent to select and invoke the tool effectively, though a bit more explicit sibling differentiation would make it perfect.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage and the description does not mention query, limit, subreddit, or time_filter by name. It only implicitly suggests that query is free-text, so the description fails to compensate for the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's role as 'STEP 1: FOUNDATION SEARCH' and its purpose: to find 'factual threads or technical explanations.' It also distinguishes itself from siblings by noting it uses a broad DuckDuckGo web search to find Reddit threads that Reddit's own search might miss.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear when-to-use context ('STEP 1: FOUNDATION SEARCH') and explains the broad web-search approach. It mentions the no-pagination limitation, but it does not explicitly list exclusions or name alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.3.2- Changed
analyze_niche_trends6 fields changed- added
Input schema / properties / limit / maximumAdded value: +100 - added
Input schema / properties / limit / minimumAdded value: +1 - added
Output schema / properties / data / items / properties / age_in_days / anyOfAdded value: +[ + { + "type": "integer" + }, + { + "type": "null" + } +] - changed
Output schema / properties / data / items / properties / age_in_days / descriptionPrevious value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown." - removed
Output schema / properties / data / items / properties / age_in_days / typeRemoved value: -"integer" - added
Output schema / properties / data_sourceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable)." +}
- Changed
explore_reddit_discussions6 fields changed- added
Input schema / properties / limit / maximumAdded value: +100 - added
Input schema / properties / limit / minimumAdded value: +1 - added
Output schema / properties / data / items / properties / age_in_days / anyOfAdded value: +[ + { + "type": "integer" + }, + { + "type": "null" + } +] - changed
Output schema / properties / data / items / properties / age_in_days / descriptionPrevious value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown." - removed
Output schema / properties / data / items / properties / age_in_days / typeRemoved value: -"integer" - added
Output schema / properties / data_sourceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable)." +}
- Changed
extract_public_opinion5 fields changed- added
Input schema / properties / max_comments / maximumAdded value: +100 - added
Input schema / properties / max_comments / minimumAdded value: +1 - added
Input schema / properties / page_tokenAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Output schema / properties / data_sourceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable)." +} - added
Output schema / properties / next_page_tokenAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Pass this token to the tool again to fetch the next page of comments." +}
- Added
get_saved_posts - Changed
search_knowledge6 fields changed- added
Input schema / properties / limit / maximumAdded value: +100 - added
Input schema / properties / limit / minimumAdded value: +1 - added
Output schema / properties / data / items / properties / age_in_days / anyOfAdded value: +[ + { + "type": "integer" + }, + { + "type": "null" + } +] - changed
Output schema / properties / data / items / properties / age_in_days / descriptionPrevious value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown." - removed
Output schema / properties / data / items / properties / age_in_days / typeRemoved value: -"integer" - added
Output schema / properties / data_sourceAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Provenance of the data: None = official Reddit API, 'arctic_shift' = community archive (metrics may lag live Reddit), 'saved_rss' = the user's private saved-items feed (scores/comment counts unavailable)." +}
4 tool updates
v0.1.0- First observed
analyze_niche_trends - First observed
explore_reddit_discussions - First observed
extract_public_opinion - First observed
search_knowledge
TDQS
Each tool has a clearly distinct role: search_knowledge for factual threads, explore_reddit_discussions for sentiment, extract_public_opinion for deep dives on specific posts, analyze_niche_trends for trend spotting, and get_saved_posts for personal bookmarks. There is minimal overlap; even the two search tools are differentiated by intent and description.
All tool names follow a consistent verb_noun pattern with snake_case (search_knowledge, explore_reddit_discussions, extract_public_opinion, analyze_niche_trends, get_saved_posts). The naming is predictable and matches the action each tool performs.
With only 5 tools, the server is tightly scoped for Reddit research and analysis. Each tool serves a distinct step in the workflow without redundancy, making the count appropriate and well-balanced.
The tool set covers the main research lifecycle: discovery (search), sentiment analysis (explore), deep qualitative extraction (extract_public_opinion), trend identification (analyze_niche_trends), and personal triage (get_saved_posts). Minor gaps existβsuch as a direct 'get post by ID' or subreddit metadata toolβbut agents can work around these via search and exploration. Overall the surface is complete for its stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Read-only Reddit search API for AI agents: posts, comments, comment trees, subreddit rules.
Reddit posts, comments, subreddits, and search for AI agents. Free key, self-minted, no signup.
Browse and manage Reddit posts, comments, and threads. Fetch user activity, explore hot/new/risingβ¦
Reddit & X data for AI agents over MCP. Semantic search, hosted, no Reddit API.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides AI assistants with read-only access to Reddit's API for browsing subreddits, reading posts and comments, searching Reddit, and retrieving user/subreddit information. Enables safe exploration of Reddit content without posting capabilities through natural language interactions.-
- AlicenseAqualityBmaintenanceEnables AI assistants to browse Reddit, search posts, analyze user activity, and fetch comments without requiring API keys. Features smart caching, clean data responses, and optional authentication for higher rate limits.851,785811MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, monitor, and analyze Reddit's communities and discussions through authenticated API access with intelligent caching and rate limiting.MIT
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with Reddit by searching subreddits, retrieving hot posts, and fetching detailed post information with comments through the Reddit API.-
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/ismailsaoulaj/reddit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server