-
Notifications
You must be signed in to change notification settings - Fork 1
MCP Catalog
60 curated MCP (Model Context Protocol) servers across 10 categories, with checkbox multi-select, per-MCP token forms, and live install progress.
/env-setup/mcp in the web UI.
| Category | Count | Notable |
|---|---|---|
| 🛠 Dev tools | 7 | filesystem ★, fetch ★, git ★, memory ★, sequential thinking, time, everything |
| 🌐 Git hosting | 5 | GitHub ★, GitLab, Gitea, Bitbucket, Azure DevOps |
| 🗄 Database | 8 | SQLite ★, Postgres, MySQL, MongoDB, Redis, Elasticsearch, Supabase, Firebase |
| 🔎 Search / web | 6 | Brave ★, Tavily, Perplexity, Firecrawl, Google Maps, Context7 ★ |
| 🖥 Browser | 2 | Playwright ★, Puppeteer |
| ✅ Productivity | 13 | Notion ★, Linear, Jira, Confluence, Slack, Discord, Trello, Asana, ClickUp, Airtable, Monday, Google Drive, Obsidian |
| ☁ Cloud | 6 | AWS KB, Cloudflare, Vercel, Heroku, Railway, Docker Hub |
| 📨 Communications | 5 | SendGrid, Twilio, Telegram, Stripe, Sentry |
| 📱 App publish (Experimental) | 3 | Google Play Publisher, App Store Connect, Fastlane |
| 🧠 AI assist | 5 | OpenAI Bridge, YouTube Transcript, Wikipedia, ArXiv, Everart |
★ = recommended for first-time setup (9 entries).
-
VERIFIED — Anthropic-official
@modelcontextprotocol/*or a 1st-party vendor (Notion, Cloudflare, GitHub-via-Anthropic). Package name is stable. - COMMUNITY — Popular 3rd-party packages. Package names can change as the maintainer publishes new versions.
-
EXPERIMENTAL — Package name not yet finalized or install behavior
unverified. May fail; recommended to manually fine-tune
.mcp.jsonafter install.
- Check the boxes for desired MCPs.
- Filled-in token fields appear inline for entries that need credentials (GitHub PAT, Slack Bot token, etc.). Required fields are marked with *.
- Click Install selected. Server runs
npm install -g <pkg>for each one (sequentially), and registers each into~/.claude/.mcp.jsonunder themcpServerskey with the supplied env. - Live progress at
/env-setup/tasks/{taskId}(or via WS). - After install, the MCP is available in the next Claude turn (no
need to restart the per-project child — Claude's MCP client re-reads
.mcp.jsonon each request).
-
Unregister (
POST /api/env-setup/mcp/unregister): removes the entry from.mcp.jsononly. The npm package stays on disk; re-checking the box brings it back instantly. -
Hard uninstall:
docker exec -it --user vibe vibe-coder-server npm uninstall -g <pkg>. Useful only to reclaim disk space.
Generated by the catalog:
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."
}
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/workspace"]
},
...
}
}You can hand-edit this file inside the container (docker exec -it --user vibe vibe-coder-server vi ~/.claude/.mcp.json) for entries the catalog
doesn't cover. Survives image upgrades.
Two ways:
docker exec -it --user vibe vibe-coder-server bash
npm install -g some-mcp-package
# Edit ~/.claude/.mcp.json to add the entryBoth paths (/home/vibe/.local + /home/vibe/.claude) are bind-mounted
so the install + registration survive image upgrades.
Add an entry to server/.../env/McpCatalog.kt. The 50-line snippet
includes id / package / category / trust tier / configFields. Send a PR.
For most users:
| ★ | What it does |
|---|---|
| filesystem | Read/write under the workspace |
| fetch | Pull external docs as Markdown |
| git | Git log/diff/status (read-only) |
| memory | Knowledge graph across sessions |
| sqlite | Query the SQLite under .vibecoder/ |
| context7 | Up-to-date library docs |
| GitHub | Issues/PRs/repo browsing (needs PAT) |
| Notion | Workspace pages (needs Integration token) |
| Brave Search | Web search (free API key) |
After this 9-pack, install Playwright or Puppeteer only if you actually need browser automation (~300 MB Chromium download).