Auto-document vibe coding sessions - collect, summarize, and publish
Auto-document vibe coding sessions - collect, summarize, and publish. The vibe mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
You spent four hours pair-programming with Claude. You made three architectural decisions, wrote eight files, and reverted twice. Tomorrow you will not remember why you picked the second option in commit a1b2c3d over the first one you tried. Most people solve this with manual journaling that lasts two weeks, or by trawling git log after the fact.
Everything the assistant can do here goes through one of these:
muse_collect_code_context — toolmuse_summarize_design_decisions — toolmuse_analyze_code — toolmuse_generate_dev_document — toolmuse_normalize_for_platform — toolmuse_publish_document — toolmuse_create_session_log — toolmuse_session_history — toolmuse_export_session — toolmuse_project_profile — toolmuse_git — toolmuse_session_stats — toolYou will need 8 environment variables: ANTHROPIC_API_KEY, NOTION_API_KEY, NOTION_DATABASE_ID, GITHUB_TOKEN, CONFLUENCE_BASE_URL, CONFLUENCE_API_TOKEN, SLACK_WEBHOOK_URL, DISCORD_WEBHOOK_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at vibe-coding-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Vibe's toolset — muse_collect_code_context, muse_summarize_design_decisions, muse_analyze_code and 11 more — is a fair guide to whether it matches your workflow. It is maintained by MUSE-CODE-SPACE; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| muse_collect_code_context | tool |
| muse_summarize_design_decisions | tool |
| muse_analyze_code | tool |
| muse_generate_dev_document | tool |
| muse_normalize_for_platform | tool |
| muse_publish_document | tool |
| muse_create_session_log | tool |
| muse_session_history | tool |
| muse_export_session | tool |
| muse_project_profile | tool |
| muse_git | tool |
| muse_session_stats | tool |
| muse_auto_tag | tool |
| muse_template | tool |
{
"mcpServers": {
"vibe-coding": {
"command": "npx",
"args": ["-y", "vibe-coding-mcp"],
"env": {
"ANTHROPIC_API_KEY": "your-value",
"NOTION_API_KEY": "your-value",
"NOTION_DATABASE_ID": "your-value",
"GITHUB_TOKEN": "your-value",
"CONFLUENCE_BASE_URL": "your-value",
"CONFLUENCE_API_TOKEN": "your-value",
"SLACK_WEBHOOK_URL": "your-value",
"DISCORD_WEBHOOK_URL": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| ANTHROPIC_API_KEY | Credential the server authenticates with. | Yes |
| NOTION_API_KEY | Credential the server authenticates with. | Yes |
| NOTION_DATABASE_ID | Configuration value read at startup. | Optional |
| GITHUB_TOKEN | Credential the server authenticates with. | Yes |
| CONFLUENCE_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| CONFLUENCE_API_TOKEN | Credential the server authenticates with. | Yes |
| SLACK_WEBHOOK_URL | Endpoint or connection string the server talks to. | Yes |
| DISCORD_WEBHOOK_URL | Endpoint or connection string the server talks to. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.