Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Dec 10, 2024
1 parent dc8c5de commit ee93b0f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
30 changes: 16 additions & 14 deletions README.md
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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jetbrains/mcp-proxy",
"version": "1.0.9",
"version": "1.0.10",
"description": "A MCP proxy to redirect requests to JetBrains IDEs",
"main": "dist/src/index.js",
"type": "module",
Expand Down

0 comments on commit ee93b0f

Please sign in to comment.