← Back to Docs
MCP

A second reviewer for your agent's plan

What is the Plan Review MCP?

The Plan Review MCP is a remote server that checks an AI coding agent's implementation plan against your codebase's real conventions before any code gets written. It runs as a Model Context Protocol server, so Claude Code, Cursor, Codex, and any MCP-capable agent can call it directly during planning, catching drift, duplication, and unsafe schema changes before they exist, not after a pull request opens.

What skills can I run?

Four skills are live today. full-review runs all nine plan-check dimensions and is the default — run it on every plan before writing code. The other three are narrower, cheaper follow-up checks for a specific question mid-task.

SkillWhen to use itCost
full-reviewReview this PRD/spec against our codebase — the default.$1.00
architecture-fitDoes this plan fit how our codebase is built?30¢
schema-reviewIs this migration safe?30¢
security-reviewWhat's the threat surface of this plan?30¢

What tools does the MCP server expose?

Six tools cover the full workflow: discovering which skills exist, reading a skill's full instructions, resolving project context, running a review, fetching a persisted result, and looking up a project by name.

ToolPurpose
list_skillsList available plan-review skills plus planned ones.
get_skillFull markdown instructions for a named skill.
get_project_contextStack profile, ADR titles, module directories, and the skill registry for a project.
vibecop_checkRun a skill against a submitted plan and extracted intents; returns verdict, findings, recommendations.
get_plan_reviewFetch a persisted plan review by id.
resolve_projectLook up projects by name; returns candidates when ambiguous, never silently picks one.

How do I connect my agent?

Mint a token in VibeCop Settings under "Plan Review MCP · Agent Auth," then add the server to your agent's MCP config. The full installer has copy-paste setup for Claude Code, Codex, and Cursor.

Open the MCP installer
Related docs
Plan Review MCP