/ Diretório / Playground / vibe-check-mcp-server
● Comunidade PV-Bhat ⚡ Instantâneo

vibe-check-mcp-server

por PV-Bhat · PV-Bhat/vibe-check-mcp-server

A second LLM that challenges your agent's plan before execution — catches tunnel vision, over-engineering, reasoning lock-in.

vibe-check-mcp (PV-Bhat) provides metacognitive feedback to agents via Chain-Pattern Interrupts (CPI). Invokes a second model to push back on assumptions at key decision points. Project is in maintenance mode (v2.8.0 final) but still fully functional under MIT.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

vibe-check.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "vibe-check": {
      "command": "npx",
      "args": [
        "-y",
        "vibe-check-mcp-server"
      ],
      "_inferred": true
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "vibe-check": {
      "command": "npx",
      "args": [
        "-y",
        "vibe-check-mcp-server"
      ],
      "_inferred": true
    }
  }
}

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "vibe-check": {
      "command": "npx",
      "args": [
        "-y",
        "vibe-check-mcp-server"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "vibe-check": {
      "command": "npx",
      "args": [
        "-y",
        "vibe-check-mcp-server"
      ],
      "_inferred": true
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "vibe-check",
      "command": "npx",
      "args": [
        "-y",
        "vibe-check-mcp-server"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.config/zed/settings.json
{
  "context_servers": {
    "vibe-check": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "vibe-check-mcp-server"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add vibe-check -- npx -y vibe-check-mcp-server

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: vibe-check-mcp-server

Sanity-check a plan before a destructive action with vibe-check

👤 Anyone running agents with write access ⏱ ~10 min beginner

Quando usar: The agent is about to delete files, run a migration, or deploy — you want a second opinion.

Fluxo
  1. Invoke vibe_check on the plan
    Before running the migration, call vibe_check on this plan: [paste]. What could go wrong?✓ Copiado
    → Pushback list: unchecked assumptions, missing rollback, scope creep
  2. Resolve or ignore each concern explicitly
    Address each concern — either mitigate or explicitly dismiss as out of scope.✓ Copiado
    → Annotated plan ready to run

Resultado: Fewer 'oh no' moments after destructive actions.

Armadilhas
  • Agent dismisses all concerns rubber-stamp style — Require the agent to restate each concern and the specific mitigation

Enforce session rules with vibe-check's constitution

👤 Teams sharing agent workflows ⏱ ~10 min intermediate

Quando usar: You want certain rules (never push to main, always write tests first) enforced across a session.

Fluxo
  1. Set the constitution
    Use update_constitution to set these rules for this session: [list]. Enforce via CPI on every tool call that could violate them.✓ Copiado
    → Rules acknowledged; subsequent violations get interrupted
  2. Inspect when in doubt
    Call check_constitution to see what's currently in effect.✓ Copiado
    → Current rules list

Resultado: Consistent agent behavior within a session without repeating rules every message.

Capture lessons from agent mistakes with vibe_learn

👤 Agent developers iterating on prompts ⏱ ~5 min beginner

Quando usar: The agent made a classic mistake; you want it not to repeat.

Fluxo
  1. Log the lesson
    Call vibe_learn with: mistake='deleted prod table without snapshot', lesson='always take a snapshot before DDL on prod'.✓ Copiado
    → Lesson stored for the session
  2. Rely on it later
    (later in same session) Attempt a DDL — vibe_check surfaces the stored lesson✓ Copiado
    → Interrupt with the relevant past lesson

Resultado: In-session memory of 'don't do that again' without prompt engineering.

Combinações

Combine com outros MCPs para 10× de alavancagem

Plan + pushback loop

Plan with sequentialthinking_tools, then call vibe_check on the plan before executing step 1.✓ Copiado
vibe-check + overture

Visual plan + vibe-check layer

After Overture produces the plan graph, run vibe_check on it and surface concerns as annotations.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
vibe_check plan: str, context?: str Before any non-trivial or irreversible action 1 LLM call via your configured provider
vibe_learn mistake: str, lesson: str Immediately after a mistake, while fresh 0
update_constitution rules: str[] Session start or policy change 0
check_constitution Debug unexpected interrupts 0
reset_constitution Start fresh 0

Custo e limites

O que custa rodar

Cota de API
Uses your chosen LLM's quota
Tokens por chamada
500-3000 for vibe_check
Monetário
LLM token cost only
Dica
Only vibe_check on substantive plans — skipping it on trivial edits saves tokens

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: LLM API key in env (OPENAI_API_KEY, ANTHROPIC_API_KEY, etc.)
Saída de dados: Only to your configured LLM provider

Solução de problemas

Erros comuns e correções

vibe_check returns empty concerns

Plan input was too vague — include concrete steps and side effects

Agent ignores vibe_check output

Make the system prompt require addressing each concern before proceeding

npx cannot find @pv-bhat/vibe-check-mcp

The published scope is @pv-bhat; pin latest explicitly: npx -y @pv-bhat/vibe-check-mcp@latest

Alternativas

vibe-check-mcp-server vs. outros

AlternativaQuando usarTroca
sequentialthinking-toolsYou want planning, not pushbackDifferent shape — no adversarial second model
overtureYou want visual gating instead of text pushbackHeavier setup

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills