Integrate MCPCodex directly into your development environment for seamless AI-powered coding assistance.
Full integration with IntelliSense
IntelliJ, WebStorm, PyCharm & more
LSP integration
Package Control plugin
Open VS Code and search for "MCPCodex" in the Extensions marketplace, or click the install button above.
// .vscode/settings.json
{
"mcpcodex.enable": true,
"mcpcodex.apiKey": "undefined",
"mcpcodex.model": "claude-3-opus",
"mcpcodex.features": {
"codeCompletion": true,
"codeReview": true,
"testGeneration": true,
"documentation": true,
"refactoring": true
},
"mcpcodex.shortcuts": {
"complete": "Ctrl+Space",
"review": "Ctrl+Shift+R",
"generateTest": "Ctrl+Shift+T",
"refactor": "Ctrl+Shift+F"
},
"mcpcodex.agents": [
{
"name": "code-assistant",
"trigger": "onType",
"debounce": 500
}
]
}
Use keyboard shortcuts or the command palette to access MCPCodex features.
Ctrl+Space
AI Code Completion
Ctrl+Shift+R
Code Review
Ctrl+Shift+T
Generate Tests
Ctrl+Shift+F
Refactor Code
<!-- .idea/mcpcodex.xml -->
<component name="MCPCodexSettings">
<option name="enabled" value="true" />
<option name="apiKey" value="$MCPCODEX_API_KEY" />
<agents>
<agent name="code-reviewer" model="claude-3-opus" />
<agent name="test-generator" model="gpt-4" />
</agents>
<features>
<feature name="smartCompletion" enabled="true" />
<feature name="codeAnalysis" enabled="true" />
<feature name="refactoring" enabled="true" />
</features>
<keymaps>
<keymap action="mcpcodex.complete" keys="Ctrl+Space" />
<keymap action="mcpcodex.review" keys="Ctrl+Alt+R" />
</keymaps>
</component>
Context-aware code suggestions powered by AI, understanding your entire project structure.
Get instant feedback on code quality, security issues, and best practices.
Automatically generate comprehensive test suites for your code.
Intelligently refactor code while maintaining functionality and improving readability.
Having trouble setting up your IDE? Check our troubleshooting guide or contact support.