Complete setup instructions for all supported tools and IDEs.
- Node.js 22 or newer.
npmornpxavailable in the environment where the MCP host starts servers.- Network access during first
npxinstall, unless the package is already cached or installed locally.
Verify the server can start:
npx -y @corbat-tech/coding-standards-mcpThe process uses stdio for MCP traffic and logs startup status to stderr.
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"corbat": {
"command": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}Restart Cursor after adding the configuration.
Add to .vscode/mcp.json in your project root:
{
"mcpServers": {
"corbat": {
"command": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}This works with GitHub Copilot, Continue, Cline, and other MCP-compatible extensions.
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"corbat": {
"command": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}Restart Windsurf after adding the configuration.
Works with IntelliJ IDEA, PyCharm, WebStorm, Android Studio, GoLand, Rider, PhpStorm, RubyMine, CLion, and DataGrip.
- Go to Settings → Tools → AI Assistant → Model Context Protocol
- Add a new MCP server with this configuration:
{
"mcpServers": {
"corbat": {
"command": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}Add to ~/.config/zed/settings.json:
{
"context_servers": {
"corbat": {
"command": {
"path": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}
}Edit ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"corbat": {
"command": "npx",
"args": ["-y", "@corbat-tech/coding-standards-mcp"]
}
}
}Restart Claude Desktop after adding the configuration.
Run this command:
claude mcp add corbat -- npx -y @corbat-tech/coding-standards-mcpThat's it! The MCP is now available in your Claude Code sessions.
- Go to Window → Preferences → AI Assistant → MCP Servers
- Add a new server with the command:
npx -y @corbat-tech/coding-standards-mcp
Using mcphub.nvim, add to your Neovim config:
require('mcphub').setup({
servers = {
corbat = {
command = "npx",
args = { "-y", "@corbat-tech/coding-standards-mcp" }
}
}
})In your Replit project:
- Go to Settings → AI
- Add MCP server configuration with the command:
npx -y @corbat-tech/coding-standards-mcp
GitHub Copilot uses your IDE's MCP configuration. Set up MCP in your IDE (VS Code, JetBrains, etc.) and Copilot will use it automatically.
Continue uses VS Code's MCP configuration (.vscode/mcp.json). Follow the VS Code setup instructions.
Cline uses VS Code's MCP configuration (.vscode/mcp.json). Follow the VS Code setup instructions.
These extensions also support MCP through your IDE's configuration:
| Extension | IDE | Setup |
|---|---|---|
| Sourcegraph Cody | VS Code, JetBrains | Use IDE's MCP config |
| Tabnine | VS Code, JetBrains, Neovim | Use IDE's MCP config |
| Amazon Q | VS Code, JetBrains | Use IDE's MCP config |
| Google Gemini Code Assist | VS Code, JetBrains | Use IDE's MCP config |
| Refact.ai | VS Code, JetBrains | Use IDE's MCP config |
| Codium AI (Qodo) | VS Code, JetBrains | Use IDE's MCP config |
- Verify npm/npx is in PATH:
which npx - Test manually:
npx @corbat-tech/coding-standards-mcp - Restart your IDE/editor completely
- Check MCP logs in your tool's settings
Override with .corbat.json in your project root:
{ "profile": "nodejs" }Or specify in your prompt: "...using profile nodejs"
npx clear-npx-cache
npx @corbat-tech/coding-standards-mcp