CodeChecker for Cursor
STDIOCode review tool using OpenAI's GPT models for intelligent code analysis and suggestions.
Code review tool using OpenAI's GPT models for intelligent code analysis and suggestions.
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