Connect MCPCodex with your favorite tools and platforms. Seamlessly integrate AI-powered development into your existing workflow.
Add MCPCodex to your project
# npm
npm install @mcpcodex/core --save-dev
# yarn
yarn add -D @mcpcodex/core
# pnpm
pnpm add -D @mcpcodex/core
Set up your mcpcodex.config.js
module.exports = {
apiKey: process.env.MCPCODEX_API_KEY,
integrations: {
vscode: true,
github: {
owner: 'your-org',
repo: 'your-repo'
},
slack: {
webhook: process.env.SLACK_WEBHOOK
}
}
};
Run the initialization command
npx mcpcodex init
# Or with specific integrations
npx mcpcodex init --with vscode,github,slack
Full-featured extension with IntelliSense and debugging
ext install mcpcodex.vscode-extension
Plugin for IntelliJ, WebStorm, PyCharm, and more
Install from JetBrains Marketplace
LSP integration for Neovim power users
use { "mcpcodex/nvim-mcp" }
Lightweight package for Sublime Text
Package Control: Install MCPCodex
Connect any service with our webhook API for real-time events and notifications.
// Webhook endpoint configuration
POST https://api.mcpcodex.com/webhooks
{
"url": "https://your-app.com/webhook",
"events": ["code.generated", "review.complete"],
"secret": "your-webhook-secret"
}