{"id":30754273,"url":"https://github.com/reddit/devvit-mcp","last_synced_at":"2026-04-29T23:08:01.315Z","repository":{"id":292039413,"uuid":"979541846","full_name":"reddit/devvit-mcp","owner":"reddit","description":"MCP server for writing Devvit applications","archived":false,"fork":false,"pushed_at":"2026-04-21T21:21:43.000Z","size":37954,"stargazers_count":11,"open_issues_count":4,"forks_count":5,"subscribers_count":10,"default_branch":"main","last_synced_at":"2026-04-21T23:35:50.442Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reddit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-07T17:13:18.000Z","updated_at":"2026-04-03T18:03:10.000Z","dependencies_parsed_at":"2025-08-08T23:16:34.307Z","dependency_job_id":"e98981cb-3d58-4672-a22e-ae85efa05dce","html_url":"https://github.com/reddit/devvit-mcp","commit_stats":null,"previous_names":["reddit/devvit-mcp"],"tags_count":123,"template":false,"template_full_name":null,"purl":"pkg:github/reddit/devvit-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reddit%2Fdevvit-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reddit%2Fdevvit-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reddit%2Fdevvit-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reddit%2Fdevvit-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reddit","download_url":"https://codeload.github.com/reddit/devvit-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reddit%2Fdevvit-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32447321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-04T09:07:52.094Z","updated_at":"2026-04-29T23:08:01.292Z","avatar_url":"https://github.com/reddit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## devvit-mcp\n\nA companion MCP server for writing applications on Reddit's developer platform.\n\n## Installation\n\nAdd the following to your `mcp.json` for the editor or LLM of choice.\n\n```json\n{\n  \"mcpServers\": {\n    \"devvit-mcp\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@devvit/mcp\"]\n    }\n  }\n}\n```\n\n## Opting Out Of Telemetry\n\n```json\n{\n  \"mcpServers\": {\n    \"devvit-mcp\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@devvit/mcp\"],\n      \"env\": {\n        \"DEVVIT_DISABLE_METRICS\": \"true\"\n      }\n    }\n  }\n}\n```\n\n## Developing on the MCP Server\n\n```sh\ngit clone git@github.com:reddit/devvit-mcp.git\n\ncd devvit-mcp\n\nnvm use\n\nnpm install\n\nnpm run dev\n```\n\nIf 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.\n\n- Node path: `which node`\n- Dist: `pwd` from the root of your `devvit-mcp` + `/dist/index.js`\n\n```ts\n{\n  \"mcpServers\": {\n    \"devvit-mcp\": {\n      \"command\": \"/Users/marcus.wood/.nvm/versions/node/v22.13.0/bin/node\",\n      \"args\": [\"/Users/marcus.wood/open-source/devvit-mcp/dist/index.js\"]\n    }\n  }\n}\n```\n\n## MCP Gotchas\n\n- Never put a `console.log` in the hot path of your app if you're trying to debug. You'll see weird error messages like `Unexpected token 'a', \" at Anthrop\"... is not valid JSON`. We've shimmed `logger` to automatically handle this conversion for you.\n- Only log console.error in your MCP when running through MCP.\n\n### Debugging\n\n- Using `npm run dev`, going to tools, listing them out, and triggering is the best experience.\n- To test this live with logs, use [Claude desktop](https://modelcontextprotocol.io/quickstart/user) 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 `tail` commands.\n\n- If you see something like this:\n\n```\nError: Server does not support logging (required for notifications/message)\n    at Server.assertNotificationCapability\n```\n\nYou need to add the capability to your `new MCPServer`. [Use this permalink](https://github.com/modelcontextprotocol/typescript-sdk/blob/1909bbcc671b00431579ea15c7713082406b1005/src/server/index.ts#L146) to know what key you should add.\n\n## Versioning\n\nThis 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.\n\n## Credits\n\nHuge thanks to Arabold for open sourcing [docs-mcp-server](https://github.com/arabold/docs-mcp-server). Portions of this code is heavily inspired by this library. Please use it if you need other docs servers!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freddit%2Fdevvit-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freddit%2Fdevvit-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freddit%2Fdevvit-mcp/lists"}