-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
[![official JetBrains project](http://jb.gg/badges/incubator-flat-square.svg)](https://github.com/JetBrains#jetbrains-on-github) | ||
# JetBrains MCP Proxy Server | ||
|
||
|
||
The server proxies requests from client to JetBrains IDE. | ||
|
||
## How to build | ||
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`: | ||
|
||
```json | ||
{ | ||
"mcpServers": { | ||
"github": { | ||
"jetbrains": { | ||
"command": "npx", | ||
"args": [ | ||
"<project_location>/dist/src/index.js" | ||
], | ||
"env": { | ||
"IDE_PORT": "<port of built-in webserver, can be omitted than default 63343>" | ||
} | ||
"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": "<port of built-in webserver>" | ||
} | ||
``` | ||
|
||
## How to build | ||
1. Tested on macOS | ||
2. `brew install node pnpm` | ||
3. Run `pnpm build` to build the project | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters