code-review-agent
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@code-review-agentReview this Python function for issues: def foo(a, b): return a / b"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Code Review Agent
AI 代码质量评审服务(Code Review as a Service)。把代码送给 LLM,返回结构化质量报告,亦可作为 MCP 工具被 Claude Code / Codex / Cursor 等 Agent 调用。
Submission for X-Agent AI MCP Hackathon 2026 · Open Innovation Challenge.
What it does
POST /v1/review— 提交代码片段,返回结构化评审报告(正确性 / 安全 / 性能 / 可维护性 / 最佳实践)GET /health— 健康检查,返回当前部署 CommitGET /.well-known/xagent-verification.json— 部署证明(slug + commit)GET /— 在线演示页(粘贴代码即时出报告)MCP 工具
review_code— 供 Agent 调用(stdio / streamable HTTP)
Related MCP server: CodePeel MCP Server
Quick start (local)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env # 填入 LLM_API_KEY 等
uvicorn app.main:app --reloadOpen http://127.0.0.1:8000 (demo page) or http://127.0.0.1:8000/docs (Swagger).
Example call:
curl -X POST http://127.0.0.1:8000/v1/review \
-H "Content-Type: application/json" \
-d '{"code": "def foo(a, b):\n return a / b", "language": "python"}'MCP usage
python -m app.mcp_server # stdio transport for Claude Code / Codex / CursorOr register in your client config:
{
"mcpServers": {
"code-review-agent": {
"command": "python",
"args": ["-m", "app.mcp_server"]
}
}
}Configuration (env vars)
Var | Default | Description |
|
| OpenAI-compatible base URL |
| — | API key (required) |
|
| Model name |
|
| LLM request timeout |
|
| Deployed commit, returned by /health and /.well-known/xagent-verification.json |
Deployment
Docker:
docker build -t code-review-agent . && docker run -p 8000:8000 code-review-agentRender: push to repo, set env vars, use
render.yaml— setCOMMITto the exact deployed commit.
After deploy, verify:
curl https://<your-host>/health
curl https://<your-host>/.well-known/xagent-verification.jsonLicense
UNLICENSED — submission-only use for X-Agent AI MCP Hackathon 2026.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Security reviews for coding agents: diffs checked against your org policy and live infrastructure.
Agentic code review, no signup to try: reality gates + frontier-model review, with veto.
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Lints + auto-fixes how AI coding agents discover any new product. 24 rules, 6 tools, score 0-100.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI-powered, zero-trust code review with multiple models, supporting single files, git diffs, and multiple files, with security, performance, and architecture checks across 10+ languages.13MIT

CodePeel MCP Serverofficial
FlicenseAqualityDmaintenanceEnables AI agents to review code diffs for bugs, security issues, and bad patterns, and generate fixes.4-- AlicenseNot gradedqualityDmaintenanceEnables AI-powered code review and improvement, including analysis, refactoring suggestions, and automatic test generation, with an optional agentic loop for iterative refinement.MIT
- FlicenseAqualityDmaintenanceAI-powered code review assistant that analyzes repositories for security vulnerabilities, performance bottlenecks, and code quality issues through natural language interactions.2-