io.github.HectorGuerilla/review-mcp
Official1 toolMulti-model code review: a panel of models + detectors return a pass/fail verdict. Paid via x402.
Multi-model code review panel returns pass/fail verdicts with x402 billing.
Captured live from the server via tools/list.
review_code
Adversarial multi-model code review. Submit a diff, a module, or a spec+implementation and get back a structured pass/fail verdict with each issue's type, severity, location, explanation, and suggested fix. Why call this instead of reviewing your own output: a single model shares its blind spots with itself. This routes your code through a panel of *different* models plus a set of deterministic detectors, catching what self-review misses — path/contract violations, module incoherence (dangling imports, broken cross-references), syntax and call-arity regressions in a diff's post-image, and 'prose instead of tool calls' (output that describes an action rather than emitting it). The panel adds semantic judgment on top and never overrides a deterministic finding. Call it before shipping or merging, as a second opinion on a risky change, or as a gate in an autonomous build loop. Choose depth='fast' (one model, low latency) or 'deep' (full panel, higher recall). Paid per call via x402 (USDC on Base); the price is announced in the 402 response before any charge.
Parameters (4)
- payloadstringrequired
a unified diff, a complete module/file, or a spec plus its implementation (include enough context lines for diffs).
- languagestringrequired
primary language of the payload (e.g. "typescript", "python").
- contextstring
optional spec/intent, related interfaces, constraints, or what the change should do.
- depthstring
"fast" = single-model, low latency; "deep" = full panel, higher recall (default "deep").
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"review-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://review-mcp-production.up.railway.app/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.