DocsDevelopmentIDE Integration

IDE Integration

Integrate MCPCodex directly into your development environment for seamless AI-powered coding assistance.

Supported IDEs

Visual Studio Code

Full integration with IntelliSense

Install Extension

JetBrains IDEs

IntelliJ, WebStorm, PyCharm & more

Install Plugin

Neovim

LSP integration

Setup Guide

Sublime Text

Package Control plugin

Setup Guide

Visual Studio Code Setup

1Install Extension

Open VS Code and search for "MCPCodex" in the Extensions marketplace, or click the install button above.

2Configure Settings

settings.json
// .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
    }
  ]
}

3Start Coding

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

JetBrains IDEs Setup

mcpcodex.xml
<!-- .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>

IDE Features

Smart Completions

Context-aware code suggestions powered by AI, understanding your entire project structure.

Code Reviews

Get instant feedback on code quality, security issues, and best practices.

Test Generation

Automatically generate comprehensive test suites for your code.

Refactoring

Intelligently refactor code while maintaining functionality and improving readability.

Next Steps

IDE Setup Support

Having trouble setting up your IDE? Check our troubleshooting guide or contact support.