Reddit MCP Server
Enables access to Reddit data including posts, comments, user profiles, and subreddit information through a unified API interface with token-efficient TOON format output.
README
Reddit MCP Server
MCP server for Reddit API - Access Reddit data through a unified API interface with TOON format for 90%+ token savings.
Features
- Fetch hot/new/top posts from any subreddit
- Get detailed post content including comment trees
- Search Reddit posts by query
- Get user profile information and activity
- Get subreddit information
- Returns data in TOON format for token efficiency
- Proxy support for enterprise environments
Installation
npm install @yilin-jing/reddit-mcp
Or run directly:
npx @yilin-jing/reddit-mcp
Configuration
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"reddit": {
"command": "npx",
"args": ["-y", "@yilin-jing/reddit-mcp"],
"env": {}
}
}
}
Environment Variables (Optional)
PROXY_URL- HTTP/HTTPS proxy URLHTTP_PROXY- Alternative proxy settingHTTPS_PROXY- Alternative proxy setting
Available Tools
| Tool | Description |
|---|---|
get_subreddit_hot |
Get hot posts from a subreddit |
get_subreddit_new |
Get new posts from a subreddit |
get_subreddit_top |
Get top posts from a subreddit (with time filter) |
get_post_content |
Get post details with comments tree |
search_posts |
Search Reddit posts by query |
get_user_info |
Get Reddit user profile information |
get_user_posts |
Get posts submitted by a user |
get_user_comments |
Get comments made by a user |
get_subreddit_info |
Get subreddit information |
Usage Examples
Get Hot Posts from a Subreddit
Tool: get_subreddit_hot
Args: { "subreddit": "programming", "limit": 10 }
Get Top Posts of the Week
Tool: get_subreddit_top
Args: { "subreddit": "askreddit", "time": "week", "limit": 20 }
Get Post Content with Comments
Tool: get_post_content
Args: { "post_id": "abc123", "comment_limit": 30, "comment_depth": 5 }
Search Posts
Tool: search_posts
Args: { "query": "typescript tutorial", "subreddit": "programming", "sort": "top", "time": "month" }
Get User Information
Tool: get_user_info
Args: { "username": "spez" }
Output Format
All responses are returned in TOON format for maximum token efficiency. Example cleaned post data:
id:"abc123"
title:"Example Post Title"
subreddit:"programming"
author:"username"
score:1234
upvoteRatio:0.95
comments:56
created:"2024-01-15T10:30:00.000Z"
url:"https://example.com"
permalink:"https://reddit.com/r/programming/comments/abc123/example_post/"
Development
# Install dependencies
npm install
# Build
npm run build
# Run in development
npm run dev
# Run tests
npm test
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.