Skip to main content
Glama
ismailsaoulaj

reddit-mcp-server

Reddit MCP Server

Give your AI assistant a live, structured window into Reddit β€” zero API keys required.

CI Status PyPI version Python Version License: MIT Zero Config

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-After respect, 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 8000 for Open WebUI, LibreChat, and n8n.


🧰 Available Tools

Tool Name

Purpose

Best Used For

search_knowledge

Broad web search via DuckDuckGo

Finding technical explanations and factual discussions across Reddit.

explore_reddit_discussions

Discussion search with metrics

Gauging sentiment, upvote consensus, and topic exploration.

extract_public_opinion

Deep comment tree extraction & filtering

Reading high-quality community opinions with noise & bots removed.

analyze_niche_trends

Live trending & rising posts tracker

Identifying real-time problems, pain points, or new ideas in a niche.

get_saved_posts

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 8000

Configure 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=40

Consider 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-server

Docker 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_optional

Note: If using Docker with STDIO mode, replace the command in client configs with docker and arguments with run -i --rm reddit-mcp-server.


πŸ› οΈ Configuration for AI Clients

1. Claude Desktop

Edit your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %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-ai

  • Env: (Optional) Add REDDIT_SAVED_RSS_URL and 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:

  1. Go to Admin Panel > Settings > External Connections / Tools.

  2. Add a new MCP Server.

  3. Type: MCP (Streamable HTTP)

  4. URL: http://localhost:8000/mcp (Use http://host.docker.internal:8000/mcp if 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-ai

This 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:

  1. Fork the repository and clone your fork.

  2. Install dependencies: uv sync --locked --extra dev

  3. Create a branch: git checkout -b feature/your-feature-name

  4. Make your changes, then lint and test:

   uv run ruff check .
   uv run ruff format .
   uv run pytest tests/
  1. 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 tools
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.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNorelevance
limitNo
keywordYes
subredditNo
page_tokenNo
time_filterNoyear

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYesThe extracted posts.
statusNoStatus of the request (e.g., success, partial_timeout).
messageNoSystem message or warning (especially if partial_timeout occurred).
data_sourceNoProvenance 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_contextYesTemporal and spatial context for the AI.
next_page_tokenNoPass this token to the tool again to fetch the next page.

TDQS

A3.7/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
post_urlYes
page_tokenNo
max_commentsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYesThe extracted comments.
statusNoStatus of the request.
messageNoSystem message or warning.
data_sourceNoProvenance 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_contextYesTemporal and spatial context for the AI.
next_page_tokenNoPass this token to the tool again to fetch the next page of comments.

TDQS

A4.4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/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, 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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
time_filterNomonth

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYesThe extracted posts.
statusNoStatus of the request (e.g., success, partial_timeout).
messageNoSystem message or warning (especially if partial_timeout occurred).
data_sourceNoProvenance 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_contextYesTemporal and spatial context for the AI.
next_page_tokenNoPass this token to the tool again to fetch the next page.

TDQS

A4.4/5.0
Behavior5/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
subredditNo
time_filterNoall

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataYesThe extracted posts.
statusNoStatus of the request (e.g., success, partial_timeout).
messageNoSystem message or warning (especially if partial_timeout occurred).
data_sourceNoProvenance 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_contextYesTemporal and spatial context for the AI.
next_page_tokenNoPass this token to the tool again to fetch the next page.

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters2/5

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.

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 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.

Usage Guidelines4/5

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.

  1. 5 tool updatesv0.3.2
    • Changedanalyze_niche_trends6 fields changed
      • addedInput schema / properties / limit / maximum
        Added value: +100
      • addedInput schema / properties / limit / minimum
        Added value: +1
      • addedOutput schema / properties / data / items / properties / age_in_days / anyOf
        Added value: +[
        +  {
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / data / items / properties / age_in_days / description
        Previous value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown."
      • removedOutput schema / properties / data / items / properties / age_in_days / type
        Removed value: -"integer"
      • addedOutput schema / properties / data_source
        Added 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)."
        +}
    • Changedexplore_reddit_discussions6 fields changed
      • addedInput schema / properties / limit / maximum
        Added value: +100
      • addedInput schema / properties / limit / minimum
        Added value: +1
      • addedOutput schema / properties / data / items / properties / age_in_days / anyOf
        Added value: +[
        +  {
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / data / items / properties / age_in_days / description
        Previous value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown."
      • removedOutput schema / properties / data / items / properties / age_in_days / type
        Removed value: -"integer"
      • addedOutput schema / properties / data_source
        Added 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)."
        +}
    • Changedextract_public_opinion5 fields changed
      • addedInput schema / properties / max_comments / maximum
        Added value: +100
      • addedInput schema / properties / max_comments / minimum
        Added value: +1
      • addedInput schema / properties / page_token
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null
        +}
      • addedOutput schema / properties / data_source
        Added 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)."
        +}
      • addedOutput schema / properties / next_page_token
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Pass this token to the tool again to fetch the next page of comments."
        +}
    • Addedget_saved_posts
    • Changedsearch_knowledge6 fields changed
      • addedInput schema / properties / limit / maximum
        Added value: +100
      • addedInput schema / properties / limit / minimum
        Added value: +1
      • addedOutput schema / properties / data / items / properties / age_in_days / anyOf
        Added value: +[
        +  {
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / data / items / properties / age_in_days / description
        Previous value: -"Days since post was created. 0 means posted today."New value: +"Days since post was created. None means the timestamp is unknown."
      • removedOutput schema / properties / data / items / properties / age_in_days / type
        Removed value: -"integer"
      • addedOutput schema / properties / data_source
        Added 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)."
        +}
  2. 4 tool updatesv0.1.0
    • First observedanalyze_niche_trends
    • First observedexplore_reddit_discussions
    • First observedextract_public_opinion
    • First observedsearch_knowledge

TDQS

A4.2/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivityMaintained
ResponsivenessUnresponsive

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides 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.
    -
  • A
    license
    A
    quality
    B
    maintenance
    Enables 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.
    8
    5
    1,785
    811
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to search, monitor, and analyze Reddit's communities and discussions through authenticated API access with intelligent caching and rate limiting.
    MIT

Latest Blog Posts

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