vibe-check-mcp-server
by PV-Bhat·★ 487·Score 51
Vibe Check MCP provides mentor-like feedback to AI Agents, preventing tunnel-vision and over-engineering through chain-pattern interrupts.
Overview
Vibe Check MCP is a research-backed oversight tool that implements Anthropic's Model Context Protocol. It acts as an AI meta-mentor for agents, interrupting pattern inertia with Chain-Pattern Interrupts (CPI) to prevent Reasoning Lock-In. The tool uses a secondary LLM to provide metacognitive feedback to your main agent, helping it stay on the minimal viable path and escalating complexity only when evidence demands it. While no longer actively maintained, the final release (v2.8.0) remains fully functional with security patches and bug fixes.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when your agents tend to over-engineer solutions or get stuck in reasoning loops, especially for complex coding tasks or ambiguous workflows.
When NOT to choose this
Don't use if you need a long-term actively maintained project, as this is in maintenance mode with no further updates planned.
Tools this server exposes
3 tools extracted from the READMEupdate_constitution({ sessionId, rules })Merges/sets rule set for a session
reset_constitution({ sessionId })Clears session rules for a specific session
check_constitution({ sessionId })Returns effective rules for a session
Comparable tools
Installation
Installation
Quick Start (npx)
Run the server directly from npm without a local installation. Requires Node >=20.
Option 1 – MCP client over STDIO
npx -y @pv-bhat/vibe-check-mcp start --stdioAdd this to your client config:
{
"mcpServers": {
"vibe-check-mcp": {
"command": "npx",
"args": ["-y", "@pv-bhat/vibe-check-mcp", "start", "--stdio"]
}
}
}Option 2 – HTTP inspection
npx -y @pv-bhat/vibe-check-mcp start --http --port 2091FAQ
- Is this project still maintained?
- No, v2.8.0 is the final release with security patches and bug fixes. The server remains fully functional under the MIT license, and community forks are welcome.
- Which LLM providers are supported?
- Vibe Check supports Gemini (default), OpenAI, Anthropic, and OpenRouter as LLM providers for the metacognitive feedback layer.
Compare vibe-check-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.