Devvit MCP
OfficialA companion server for writing applications on Reddit's developer platform (Devvit), providing tools and resources for building Reddit applications.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Devvit MCPhow do I create a Reddit bot that responds to comments?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
devvit-mcp
A companion MCP server for writing applications on Reddit's developer platform.
Related MCP server: Vibe Coder MCP
Installation
Add the following to your mcp.json for the editor or LLM of choice.
{
"mcpServers": {
"devvit-mcp": {
"command": "npx",
"args": ["-y", "@devvit/mcp"]
}
}
}Opting Out Of Telemetry
{
"mcpServers": {
"devvit-mcp": {
"command": "npx",
"args": ["-y", "@devvit/mcp"],
"env": {
"DEVVIT_DISABLE_METRICS": "true"
}
}
}
}Developing on the MCP Server
git clone git@github.com:reddit/devvit-mcp.git
cd devvit-mcp
nvm use
npm install
npm run devIf you want to test your MCP server inside of other projects. Pass in the entire path to your node runtime and the location of /dist/index.js on your machine.
Node path:
which nodeDist:
pwdfrom the root of yourdevvit-mcp+/dist/index.js
{
"mcpServers": {
"devvit-mcp": {
"command": "/Users/marcus.wood/.nvm/versions/node/v22.13.0/bin/node",
"args": ["/Users/marcus.wood/open-source/devvit-mcp/dist/index.js"]
}
}
}MCP Gotchas
Never put a
console.login the hot path of your app if you're trying to debug. You'll see weird error messages likeUnexpected token 'a', " at Anthrop"... is not valid JSON. We've shimmedloggerto automatically handle this conversion for you.Only log console.error in your MCP when running through MCP.
Debugging
Using
npm run dev, going to tools, listing them out, and triggering is the best experience.To test this live with logs, use Claude desktop and connecting the MCP there. They have log files that report errors on your machine. You can view them by opening in VSCode or running
tailcommands.If you see something like this:
Error: Server does not support logging (required for notifications/message)
at Server.assertNotificationCapabilityYou need to add the capability to your new MCPServer. Use this permalink to know what key you should add.
Versioning
This package uses automated versioning managed by CI/CD. The version in package.json is a placeholder and will be automatically updated during the release process. Check git tags for the actual released versions.
Credits
Huge thanks to Arabold for open sourcing docs-mcp-server. Portions of this code is heavily inspired by this library. Please use it if you need other docs servers!
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA specialized MCP server that enables AI agents to interact with Reddit, including reading posts, creating content, and managing subreddit configurations.26310Apache 2.0
- AlicenseBqualityCmaintenanceAn MCP server that supercharges AI assistants with powerful tools for software development, enabling research, planning, code generation, and project scaffolding through natural language interaction.1138100MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to access and interact with Reddit content through features like user analysis, post retrieval, subreddit statistics, and authenticated posting capabilities.15297MIT
- AlicenseAqualityAmaintenanceAn MCP server that empowers AI coding agents to work effectively with Minecraft mod development, providing static analysis of decompiled source code and runtime interaction with a running Minecraft instance.311910MIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/reddit/devvit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server