DarkoKuzmanovic/reddit-mcp
MCP server that lets LLMs fetch and read Reddit posts, comments, and subreddit listings — no API keys required
Platform-specific configuration:
{
"mcpServers": {
"reddit-mcp": {
"command": "npx",
"args": [
"-y",
"reddit-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server that lets LLMs fetch and read content from Reddit. Give Claude the ability to browse posts, comments, and subreddit listings.
redd.it URLsgit clone https://github.com/quzma/reddit-mcp.git
cd reddit-mcp
npm install
npm run buildAdd to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"reddit": {
"command": "node",
"args": ["/absolute/path/to/reddit-mcp/dist/index.js"]
}
}
}Add to your Claude Code MCP settings:
claude mcp add reddit -- node /absolute/path/to/reddit-mcp/dist/index.jsnpm run devfetch_redditFetch content from a Reddit URL.
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | url | string | Yes | Reddit URL (post, subreddit, or user page) | | comment_limit | number | No | Max top-level comments to include (0-50, default 15) |
Supported URL formats:
https://reddit.com/r/subreddit/comments/id/title/https://reddit.com/r/subreddit/https://reddit.com/user/username/https://redd.it/idUses Reddit's public JSON API — no API keys or OAuth needed. The server communicates over stdio using the MCP protocol, so it works as a local tool for any MCP-compatible client.
Content safety measures:
-
Loading reviews...