https://github.com/JetBrains/mcp-jetbrains
A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
https://github.com/JetBrains/mcp-jetbrains
ide intellij jetbrains mcp mcp-server pycharm
Last synced: 28 days ago
JSON representation
A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
- Host: GitHub
- URL: https://github.com/JetBrains/mcp-jetbrains
- Owner: JetBrains
- License: apache-2.0
- Created: 2024-12-09T11:50:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-16T11:59:07.000Z (3 months ago)
- Last Synced: 2025-03-19T05:23:56.088Z (about 1 month ago)
- Topics: ide, intellij, jetbrains, mcp, mcp-server, pycharm
- Language: JavaScript
- Homepage: https://plugins.jetbrains.com/plugin/26071-mcp-server
- Size: 30.3 KB
- Stars: 214
- Watchers: 6
- Forks: 25
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-mcp-servers - JetBrains
- awesome-mcp-servers - JetBrains
- awesome-mcp-zh - JetBrains
- awesome-mcp-servers - jetbrains/mcpProxy - Connect to JetBrains IDE (Legend / 💻 <a name="developer-tools"></a>Developer Tools)
- awesome-mcp-servers - jetbrains/mcpProxy - Connect to JetBrains IDE (Legend / 💻 <a name="developer-tools"></a>Developer Tools)
- Awesome-MCP-Servers-directory - JetBrains - Work on your code with JetBrains IDEs (Developer Tools)
- awesome-mcp-servers - JetBrains - A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio (Table of Contents / Developer Tools)
- awesome-mcp-servers - JetBrains - A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio (Table of Contents / Developer Tools)
- awesome-mcp-servers - JetBrains
README
[](https://github.com/JetBrains#jetbrains-on-github)
# JetBrains MCP Proxy ServerThe server proxies requests from client to JetBrains IDE.
## Install MCP Server plugin
https://plugins.jetbrains.com/plugin/26071-mcp-server
## Usage with Claude Desktop
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"]
}
}
}
```## Configuration
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"
}
```## How to build
1. Tested on macOS
2. `brew install node pnpm`
3. Run `pnpm build` to build the project