J
JetBrains
Bridge to JetBrains IDEs for file, run and debug tools.
·No reviews yet
Share:
About
Auto-generated
JetBrains is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about JetBrains.
- What is the JetBrains MCP and what does it do?
- The JetBrains MCP provides a bridge for connecting to JetBrains IDEs. It enables external tools to interact with file systems, execution environments, and debugging facilities within the IDE, streamlining development workflows.
- How do I install and configure the JetBrains MCP?
- Installation and configuration typically involve cloning the repository and following setup instructions specific to your JetBrains IDE. Since the transport is stdio, it integrates via standard input/output usually orchestrated by an MCP client.
- Does the JetBrains MCP require an API key or other credentials?
- No, the JetBrains MCP uses 'none' as its authentication type. This means it does not require an API key, OAuth, or any other explicit credentials for basic operation.
- What key capabilities does the JetBrains MCP expose?
- The JetBrains MCP primarily exposes capabilities related to file management, running code, and debugging within JetBrains IDEs. This allows external tools to invoke IDE functionalities programmatically.
- Is there any cost or licensing associated with using the JetBrains MCP?
- The JetBrains MCP is community-provided and stored on GitHub, implying it is likely open-source and free to use. However, licensing terms should be verified directly from the project's repository.
- What is a common limitation or prerequisite for using the JetBrains MCP?
- A key prerequisite for the JetBrains MCP is the presence of an installed and configured JetBrains IDE. Without an active IDE instance, the MCP cannot provide its intended functionality.
Install JetBrains
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jetbrains"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jetbrains"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"jetbrains": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jetbrains"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.