Reddit MCP Server

Enables browsing, searching, and reading content from Reddit through the Model Context Protocol.

Local serverstdioPython 18

What is the Reddit MCP server?

Enables browsing, searching, and reading content from Reddit through the Model Context Protocol. Exposed over MCP by the reddit mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A plug-and-play MCP server to browse, search, and read Reddit.

  • Detailed parameter validation with pydantic
  • Uses the reliable PRAW library under the hood
  • Built-in rate limiting protection thanks to PRAW

Its toolset

Everything the assistant can do here goes through one of these:

  • get_comment — Access a comment
  • get_comments_by_submission — Access comments of a submission
  • get_submission — Access a submission
  • get_subreddit — Access a subreddit by name
  • search_posts — Search posts in a subreddit
  • search_subreddits — Search subreddits by name or description
  • Others — The Others tool exposed by this server

Configuration

You will need 2 environment variables: REDDIT_CLIENT_ID, REDDIT_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

The server ships on PyPI as reddit-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Reddit's toolset — get_comment, get_comments_by_submission, get_submission and 4 more — is a fair guide to whether it matches your workflow. It is maintained by GridfireAI; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the reddit mcp server does with a few real requests.

Available tools

ToolWhat it does
get_commentAccess a comment
get_comments_by_submissionAccess comments of a submission
get_submissionAccess a submission
get_subredditAccess a subreddit by name
search_postsSearch posts in a subreddit
search_subredditsSearch subreddits by name or description
OthersThe Others tool exposed by this server.

How to install the Reddit MCP server

"mcpServers": {
  "reddit": {
    "command": "uvx",
    "args": ["reddit-mcp"],
    "env": {
      "REDDIT_CLIENT_ID": "<client_id>",
      "REDDIT_CLIENT_SECRET": "<client_secret>"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
REDDIT_CLIENT_IDConfiguration value read at startup.Optional
REDDIT_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Reddit to get comment.
  • Use Reddit to get comments by submission.
  • Use Reddit to get submission.

Frequently asked questions

You can install Reddit MCP using PIP or UVX. After installation, configure your MCP client (like Claude Desktop) with your Reddit API credentials (client ID and client secret) to begin using the exposed tools.