Jack Landis/codechecker-mcp
Built by Metorial, the integration platform for agentic AI.
Jack Landis/codechecker-mcp
Server Summary
Real-time code review
Detailed code analysis
Improvement suggestions
Integration with Cursor IDE
Support for SSE and stdio transport modes
A code review tool for Cursor IDE that uses OpenAI's GPT models to provide intelligent code analysis and suggestions.
git clone https://github.com/jacklandis29/codechecker-mcp.git
cd codechecker-mcp
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
pip install -e .
.env
file in the project root and add your OpenAI API key:OPENAI_API_KEY=your_api_key_here
python main.py --transport sse --port 8000
{
"mcp": {
"endpoint": "http://127.0.0.1:8000/sse",
"enabled": true
}
}
--transport
: Choose between "sse" (for Cursor IDE integration) or "stdio" (for command-line usage)--port
: Specify the port number for the SSE server (default: 8000)MIT License