loading…
Search for a command to run...
loading…
An MCP server that automates code reviews through linting, testing, and git diff analysis. It also generates conventional commit messages and detailed pull requ
An MCP server that automates code reviews through linting, testing, and git diff analysis. It also generates conventional commit messages and detailed pull request descriptions based on file changes and code patterns.
MCP server for automated code review, testing, linting, and commit/PR generation.
The generate_commit_and_pr tool analyzes your changed files and automatically generates:
Detailed Commit Message with:
PR Description with:
/auto-review-commitWhen you type /auto-review-commit in Cursor, the AI will:
Example:
/auto-review-commit
/auto-reviewThe /auto-review command now includes commit and PR generation at the end:
generate_commit_and_pr{
mode?: "staged" | "working" // Default: "working"
}
staged: Analyze staged changes onlyworking: Analyze all working directory changesThe tool returns a JSON object with:
{
"commitMessage": "feat(search): improve type safety, add documentation\n\n...",
"prDescription": "## Summary\n\n...",
"analysis": {
"changedFiles": 2,
"totalAdditions": 150,
"totalDeletions": 50,
"affectedAreas": ["app/composables", "app/components"],
"fileTypes": { "ts": 1, "vue": 1 }
}
}
npm run build
~/.cursor/mcp.json:{
"mcpServers": {
"cursor-auto-review": {
"command": "node",
"args": ["/path/to/cursor-autoreview-mcp/dist/index.js"]
}
}
}
The tool analyzes:
The tool creates sections:
Input: Changed files with FilterItem type imports
Output:
refactor(search): improve type safety, extract constantsany[] types with proper FilterItem[] types"Input: Files with JSDoc comments added
Output:
docs(search): add documentation, improve error handling# Build TypeScript
npm run build
# Run in development (if ts-node is available)
npm start
ISC
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"cursor-auto-review-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.