A MCP proxy to redirect requests to JetBrains IDEs
npm install @jetbrains/mcp-proxy
The server proxies requests from client to JetBrains IDE.
https://plugins.jetbrains.com/plugin/26071-mcp-server
To use this with Claude Desktop, add the following to your claude_desktop_config.json.
The full path on MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json, on Windows: %APPDATA%/Claude/claude_desktop_config.json.
``json`
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"]
}
}
}
If you're running multiple IDEs with MCP server and want to connect to the specific one, add to the MCP server configuration:
`json`
"env": {
"IDE_PORT": "
}
By default, we connect to IDE on 127.0.0.1 but you can specify a different address/host:
`json`
"env": {
"HOST": "
}
To enable logging add:
`json`
"env": {
"LOG_ENABLED": "true"
}
3. Run pnpm build` to build the project