.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/jetbrains/mcp-jetbrains
home/mcp-servers/jetbrains/mcp-jetbrains
jetbrains avatar

mcp-jetbrains

byjetbrains· 1 MCP server

Installs

5.6k

Stars

965

Forks

77

Category

Frontend Development

View on GitHub

TL;DR

This repository is no longer maintained. The core functionality has been integrated into all IntelliJ-based IDEs since version 2025.2. The built-in functionality works with SSE and JVM-based proxy (for STDIO) so this NPM package is no longer required.

How to install mcp-jetbrains?

jetbrains/mcp-jetbrains
$git clone https://github.com/jetbrains/mcp-jetbrains

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-jetbrains by running `git clone https://github.com/jetbrains/mcp-jetbrains`, then use it for the current task and follow its documentation at https://github.com/jetbrains/mcp-jetbrains.

Files · 1

View on GitHub
README.md
1[![official JetBrains project](http://jb.gg/badges/incubator-flat-square.svg)](https://github.com/JetBrains#jetbrains-on-github)
2 
3# ⚠️ Deprecated
4 
5**This repository is no longer maintained.** The core functionality has been integrated into all IntelliJ-based IDEs since version 2025.2.
6The built-in functionality works with SSE and JVM-based proxy (for STDIO) so this NPM package is no longer required.
7 
8**Migration:** Please refer to the [official documentation](https://www.jetbrains.com/help/idea/mcp-server.html) for details on using the built-in functionality.
9 
10**Issues & Support:** For bugs or feature requests related to the built-in MCP functionality, please use the [JetBrains YouTrack](https://youtrack.jetbrains.com/issues?q=project:%20IJPL%20Subsystem:%20%7BMCP%20(Model%20Context%20Protocol)%7D%20).
11 
12# JetBrains MCP Proxy Server
13 
14The server proxies requests from client to JetBrains IDE.
15 
16## Install MCP Server plugin
17 
18https://plugins.jetbrains.com/plugin/26071-mcp-server
19 
20## VS Code Installation
21 
22For one-click installation, click one of the install buttons below:
23 
24[![Install with NPX in VS Code](https://img.shields.io/badge/VS_Code-NPM-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=jetbrains&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40jetbrains%2Fmcp-proxy%22%5D%7D) [![Install with NPX in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-NPM-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=jetbrains&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40jetbrains%2Fmcp-proxy%22%5D%7D&quality=insiders)
25 
26### Manual Installation
27 
28Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
29 
30```json
31{
32 "mcp": {
33 "servers": {
34 "jetbrains": {
35 "command": "npx",
36 "args": ["-y", "@jetbrains/mcp-proxy"]
37 }
38 }
39 }
40}
41```
42 
43Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace:
44 
45```json
46{
47 "servers": {
48 "jetbrains": {
49 "command": "npx",
50 "args": ["-y", "@jetbrains/mcp-proxy"]
51 }
52 }
53}
54```
55 
56## Usage with Claude Desktop
57 
58To use this with Claude Desktop, add the following to your `claude_desktop_config.json`.
59The full path on MacOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`, on Windows: `%APPDATA%/Claude/claude_desktop_config.json`.
60 
61```json
62{
63 "mcpServers": {
64 "jetbrains": {
65 "command": "npx",
66 "args": ["-y", "@jetbrains/mcp-proxy"]
67 }
68 }
69}
70```
71 
72After installing the MCP Server Plugin, and adding the JSON to the config file, restart Claude Desktop, and make sure the Jetbrains product is open before restarting Claude Desktop.
73 
74## Configuration
75 
76If you're running multiple IDEs with MCP server and want to connect to the specific one, add to the MCP server configuration:
77```json
78"env": {
79 "IDE_PORT": "<port of IDE's built-in webserver>"
80}
81```
82 
83By default, we connect to IDE on 127.0.0.1 but you can specify a different address/host:
84```json
85"env": {
86 "HOST": "<host/address of IDE's built-in webserver>"
87}
88```
89 
90To enable logging add:
91```json
92"env": {
93 "LOG_ENABLED": "true"
94}
95```
96 
97## Troubleshooting
98 
99### Node.js Version Requirements
100**Problem:** Error message: `Cannot find module 'node:path'`
101 
102**Solution:**
103MCP Proxy doesn't work on Node 16.
104Upgrade your Node.js installation to version 18 or later. Make sure that `command` in config points to the correct Node.js version.
105Try to use the full path to the latest version of NodeJS.
106 
107###
108 
109### MacOS: Plugin Unable to Detect Node.js Installed via nvm
110**Problem:** On MacOS, if you have Node.js installed through nvm (Node Version Manager), the MCP Server Plugin might be unable to detect your Node.js installation.
111 
112**Solution:** Create a symbolic link in `/usr/local/bin` pointing

Preview

jetbrains/mcp-jetbrainsjetbrains/mcp-jetbrains

[![official JetBrains project](http://jb.gg/badges/incubator-flat-square.svg)](https://github.com/JetBrains#jetbrains-on-github)

# ⚠️ Deprecated

**This repository is no longer maintained.** The core functionality has been integrated into all IntelliJ-based IDEs since version 2025.2.

The built-in functionality works with SSE and JVM-based proxy (for STDIO) so this NPM package is no longer required.

Repojetbrains/mcp-jetbrains
TypeMCP Servers
CategoryFrontend Development
UpdatedJan 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPideintellij

Related

6 picks
Type
  1. jgravelle avatarjcodemunch-mcpToken-efficient code exploration via tree-sitter AST parsing. 70+ languages, 95%+ token savings.MCP ServersJul 202694k2.3k
  2. minimax-ai avatarminimax-coding-plan-mcpSpecialized MiniMax Model Context Protocol (MCP) server designed for coding-plan usersMCP ServersFeb 202677k94
  3. neomjs avatarneoNeo.mjs is a self-evolving software organism: a professional end-to-end AI engineering team whose cross-model swarm inhabits live apps via Neural Link, Active Hybrid GraphRAG, DreamService, and self-healing loops.MCP ServersJul 202639k3.2k
  4. jpisnice avatarshadcn-ui-mcp-serverA Model Context Protocol (MCP) server for shadcn/ui components, providing AI assistants with access to component source code, demos, blocks, and metadata.MCP ServersMay 202613k2.9k
  5. oaslananka avatarkicad-mcp-proProduction-grade MCP server for KiCad EDA—PCB design, DRC, simulation, BOM, DFM, and manufacturing.MCP ServersJul 20269.5k37
  6. taiga-family avatartaiga-ui-mcpModel Context Protocol server providing Taiga UI documentation search and scaffolding tools.MCP ServersJul 20268.7k14