vibecompass-mcp
MCP server that connects AI coding tools to VibeCompass projects for reading context and writing decisions, conflicts, and session notes.
README
<p align="center"> <a href="https://vibecompass.dev"> <img src="https://raw.githubusercontent.com/jack-whimvy/vibecompass-mcp/main/brand/logo-a4.png" alt="VibeCompass" height="96" /> </a> </p>
vibecompass-mcp
MCP stdio server for VibeCompass.
It connects Claude Code, Codex, Cursor, and similar MCP-capable tools to a VibeCompass project so sessions can read project context and write back decisions, conflicts, and session handoff notes.
Requirements
- Node.js 20+
- One of:
VIBECOMPASS_API_KEYfor hosted modeVIBECOMPASS_ROOTfor local read mode
- Local mode uses the bundled
@vibecompass/vibecompasscore dependency for file-backed reads
Environment
Hosted mode:
VIBECOMPASS_API_KEYVIBECOMPASS_API_URLDefaults tohttps://vibecompass.dev
Local mode:
VIBECOMPASS_ROOTAbsolute path to the canonical local project-memory root (project.yaml,architecture/,decisions/,sessions/,state/manifest.json)
Hybrid mode:
- If both
VIBECOMPASS_ROOTandVIBECOMPASS_API_KEYare set, read tools resolve from the local root, while write tools and hosted conflict reads remain enabled through the API client
Install
npm
Run the public scoped package:
npx -y @vibecompass/vibecompass-mcp
Development
npm test uses Node's t.mock.timers for timeout coverage. Node 20 prints an
experimental MockTimers warning; the warning is expected and does not indicate a
test failure.
Known upstream client issues: Codex 0.33 issue #3426 and Claude Code 2.0.76's
internal effortLevel failure. See
https://github.com/jack-whimvy/vibecompass-docs/blob/main/architecture/mcp-server/context-delivery/resilience.md
for current dogfood status.
Example config
Hosted mode
Claude Code (claude mcp add)
claude mcp add --transport stdio vibecompass \
--env VIBECOMPASS_API_KEY='your-api-key' \
--env VIBECOMPASS_API_URL='https://vibecompass.dev' \
-- npx -y @vibecompass/vibecompass-mcp
Claude Code (claude mcp add-json)
claude mcp add-json vibecompass '{"type":"stdio","command":"npx","args":["-y","@vibecompass/vibecompass-mcp"],"env":{"VIBECOMPASS_API_KEY":"your-api-key","VIBECOMPASS_API_URL":"https://vibecompass.dev"}}'
Claude Code project config (.mcp.json)
{
"mcpServers": {
"vibecompass": {
"command": "npx",
"args": ["-y", "@vibecompass/vibecompass-mcp"],
"env": {
"VIBECOMPASS_API_KEY": "your-api-key",
"VIBECOMPASS_API_URL": "https://vibecompass.dev"
}
}
}
}
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"vibecompass": {
"command": "npx",
"args": ["-y", "@vibecompass/vibecompass-mcp"],
"env": {
"VIBECOMPASS_API_KEY": "your-api-key",
"VIBECOMPASS_API_URL": "https://vibecompass.dev"
}
}
}
}
Codex
Add this to ~/.codex/config.toml:
[mcp_servers.vibecompass]
command = "npx"
args = ["-y", "@vibecompass/vibecompass-mcp"]
env = { VIBECOMPASS_API_KEY = "your-api-key", VIBECOMPASS_API_URL = "https://vibecompass.dev" }
Keep the repo-level AGENTS.md file committed so Codex knows when to call the
VibeCompass tools.
Local read mode
Example env:
{
"VIBECOMPASS_ROOT": "/absolute/path/to/project-memory-root"
}
Claude Code local-mode command:
claude mcp add --transport stdio vibecompass \
--env VIBECOMPASS_ROOT='/absolute/path/to/project-memory-root' \
-- npx -y @vibecompass/vibecompass-mcp
Hybrid mode
Example env:
{
"VIBECOMPASS_ROOT": "/absolute/path/to/project-memory-root",
"VIBECOMPASS_API_KEY": "your-api-key",
"VIBECOMPASS_API_URL": "https://vibecompass.dev"
}
Local development
npm install
npm run build
npm test
VIBECOMPASS_API_KEY=your-api-key npm run start
Local-only read development:
VIBECOMPASS_ROOT=/absolute/path/to/project-memory-root npm run start
Tools
Read tools work in hosted mode or local mode:
get_project_contextget_feature_contextget_decision_logget_conflictsget_file_context
Write tools require VIBECOMPASS_API_KEY and are disabled in pure local mode:
log_decisionupdate_feature_statusflag_conflictadd_session_summary
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.