We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jordanburke/reddit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manifest.json•4.79 KiB
{
"manifest_version": "0.2",
"name": "reddit-mcp-server",
"display_name": "Reddit MCP Server",
"version": "1.2.2",
"description": "Browse Reddit and create content directly from Claude Desktop. The only Reddit MCP with full write operations.",
"long_description": "Reddit MCP Server brings the full Reddit experience to Claude Desktop - not just reading, but writing too.\n\n**Key Features:**\n\n**Read Operations:**\n- Browse any subreddit with sorting options\n- Search Reddit content across all communities\n- Get user profiles with karma and activity\n- Fetch full post details including threaded comments\n- Discover trending subreddits\n\n**Write Operations (Unique!):**\n- Create new posts (text or link)\n- Reply to posts and comments\n- Edit your own posts and comments\n- Delete your own content\n\n**Why Choose Reddit MCP Server:**\n- **Full Write Support** - The only Reddit MCP that lets you post and interact\n- **Safe Mode** - Built-in spam protection to keep your account safe\n- **No API Keys Required** - Works instantly in anonymous mode\n- **Three Auth Tiers** - 10/60/100 requests per minute\n- **FastMCP Powered** - Modern, fast MCP implementation\n\n**Perfect for:**\n- Content creators and community managers\n- Market research and trend analysis\n- Automated posting with safeguards\n- Community engagement",
"author": "Jordan Burke <jordan.burke@gmail.com> (https://github.com/jordanburke)",
"repository": {
"type": "git",
"url": "https://github.com/jordanburke/reddit-mcp-server"
},
"icon": "assets/reddit-mcp-server-icon.png",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js"],
"env": {
"REDDIT_CLIENT_ID": "${user_config.reddit_client_id}",
"REDDIT_CLIENT_SECRET": "${user_config.reddit_client_secret}",
"REDDIT_USERNAME": "${user_config.reddit_username}",
"REDDIT_PASSWORD": "${user_config.reddit_password}",
"REDDIT_SAFE_MODE": "${user_config.reddit_safe_mode}"
}
}
},
"tools": [
{
"name": "get_reddit_post",
"description": "Get a specific Reddit post with engagement analysis"
},
{
"name": "get_top_posts",
"description": "Get top posts from a subreddit or home feed"
},
{
"name": "get_post_comments",
"description": "Get comments from a post with threading"
},
{
"name": "search_reddit",
"description": "Search for posts across Reddit"
},
{
"name": "get_user_info",
"description": "Get detailed user information"
},
{
"name": "get_user_posts",
"description": "Get posts by a specific user"
},
{
"name": "get_user_comments",
"description": "Get comments by a specific user"
},
{
"name": "get_subreddit_info",
"description": "Get subreddit details and statistics"
},
{
"name": "get_trending_subreddits",
"description": "Get currently trending subreddits"
},
{
"name": "create_post",
"description": "Create a new post in a subreddit"
},
{
"name": "reply_to_post",
"description": "Reply to a post or comment"
},
{
"name": "edit_post",
"description": "Edit your own post"
},
{
"name": "edit_comment",
"description": "Edit your own comment"
},
{
"name": "delete_post",
"description": "Delete your own post"
},
{
"name": "delete_comment",
"description": "Delete your own comment"
}
],
"keywords": ["reddit", "social-media", "api", "mcp", "write", "post", "comment", "search", "analysis"],
"license": "MIT",
"user_config": {
"reddit_client_id": {
"type": "string",
"title": "Reddit Client ID",
"description": "Your Reddit app client ID (optional - increases rate limit to 60 req/min)",
"required": false,
"sensitive": false
},
"reddit_client_secret": {
"type": "string",
"title": "Reddit Client Secret",
"description": "Your Reddit app client secret (required with client ID)",
"required": false,
"sensitive": true
},
"reddit_username": {
"type": "string",
"title": "Reddit Username",
"description": "Your Reddit username (required for write operations and 100 req/min)",
"required": false,
"sensitive": false
},
"reddit_password": {
"type": "string",
"title": "Reddit Password",
"description": "Your Reddit password (required for write operations)",
"required": false,
"sensitive": true
},
"reddit_safe_mode": {
"type": "string",
"title": "Safe Mode",
"description": "Spam protection level: off, standard (recommended), or strict",
"required": false,
"sensitive": false
}
}
}