JetBrains MCP Proxy Server

December 6, 2024 ยท View on GitHub

The server proxies requests from client to JetBrains IDE since MCP only supports CLI interactions.

Prerequisites

  1. Tested on macOS
  2. brew install node pnpm
  3. Run pnpm build to build the project

Usage with Claude Desktop

To use this with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": [
        "<project_location>/dist/src/index.js"
      ],
      "env": {
        "IDE_PORT": "<port of built-in webserver, can be omitted than default 63343>"
      }
    }
  }
}