Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 620 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 620 Bytes

JetBrains MCP Proxy Server

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>"
      }
    }
  }
}