namanxajmera/mcp-reddit
MCP server for scraping Reddit - no API keys required.
Scrapes posts, comments, and media from subreddits and user profiles using old.reddit.com and Libreddit mirrors.
pip install mcp-redditOr with uvx:
uvx mcp-redditFor local MCP clients like Claude Desktop and Claude Code:
uvx mcp-redditFor remote MCP clients that connect via URL:
uvx mcp-reddit --http --port 8000Options:
--http - Run in HTTP/SSE mode instead of stdio--host - Host to bind to (default: 0.0.0.0)--port - Port to listen on (default: 8000, or PORT env var)The server exposes:
GET /sse - SSE endpoint for MCP connectionPOST /messages/ - Message endpointGET /health - Health checkAdd to your Claude Desktop or Claude Code settings:
~/Library/Application Support/Claude/claude_desktop_config.json)Claude Desktop doesn't inherit your shell PATH, so you need the full path to uvx:
# Find your uvx path
which uvxThen use the full path in your config:
{
"mcpServers": {
"reddit": {
"command": "/Users/YOUR_USERNAME/.local/bin/uvx",
"args": ["mcp-reddit"]
}
}
}Replace /Users/YOUR_USERNAME/.local/bin/uvx with the output from which uvx.
claude mcp add reddit -- uvx mcp-redditOr manually in ~/.claude.json:
{
"mcpServers": {
"reddit": {
"command": "uvx",
"args": ["mcp-reddit"]
}
}
}| Tool | Description
Loading reviews...