Overview
reddit-mcp is a server designed to facilitate the MCP (Minecraft) integration with Reddit, allowing users to interact with Reddit through Minecraft.
To use reddit-mcp, set up the server by following the installation instructions on the GitHub repository, and configure it to connect with your Reddit account.
- Integration of Reddit posts and comments into Minecraft. - Ability to post updates from Minecraft to Reddit. - Customizable settings for user interactions.
- Players can share their Minecraft achievements directly to Reddit.
- Communities can discuss Minecraft-related topics in real-time.
- Server administrators can automate Reddit updates based on in-game events.
Add to your AI client
Use these steps to connect reddit-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"reddit-mcp-yuangwei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"reddit-mcp-yuangwei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"reddit-mcp-yuangwei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"reddit-mcp-yuangwei": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"reddit-mcp-yuangwei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"reddit-mcp-yuangwei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-reddit-mcp-yuangwei"
]
}
}
}FAQ
Can reddit-mcp be used with any Minecraft server?
Yes! reddit-mcp can be integrated with various Minecraft server types.
Is there a cost to use reddit-mcp?
No, reddit-mcp is free to use and open-source.
Where can I find support for reddit-mcp?
Support can be found on the GitHub repository's issues page.