
JDBC MCP Server Integration
The JDBC MCP Server bridges AI assistants and SQL databases using the JDBC protocol, enabling real-time queries, analytics automation, and streamlined database ...
The JetBrains MCP Server acts as a proxy between AI clients and JetBrains IDEs such as IntelliJ, PyCharm, WebStorm, and Android Studio. By bridging AI assistants with the development environment, it enables enhanced workflows where AI agents can interact directly with the IDE. This connectivity allows for tasks such as code navigation, project management, executing commands, or accessing IDE services via the Model Context Protocol (MCP). The integration leverages the MCP Server plugin for JetBrains products, making it possible for developers to utilize large language models and automation tools to streamline development, automate repetitive tasks, and provide intelligent suggestions within their familiar JetBrains IDE interface.
No prompt templates are mentioned in the available documentation.
No specific resources are listed in the available documentation.
No explicit tools are described in the available documentation or server.py.
{
"mcp": {
"servers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"]
}
}
}
}
{
"mcp": {
"servers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"],
"env": {
"IDE_PORT": "your_ide_port"
}
}
}
}
}
claude_desktop_config.json
(Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
, Windows: %APPDATA%/Claude/claude_desktop_config.json
).{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"]
}
}
}
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"],
"env": {
"IDE_PORT": "your_ide_port"
}
}
}
}
.vscode/mcp.json
in your workspace:{
"servers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"]
}
}
}
{
"servers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"],
"env": {
"IDE_PORT": "your_ide_port"
}
}
}
}
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"]
}
}
}
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@jetbrains/mcp-proxy"],
"env": {
"IDE_PORT": "your_ide_port"
}
}
}
}
Note: Replace
"your_ide_port"
with the actual port of your IDE’s built-in webserver.
Using MCP in FlowHunt
To integrate MCP servers into your FlowHunt workflow, start by adding the MCP component to your flow and connecting it to your AI agent:
Click on the MCP component to open the configuration panel. In the system MCP configuration section, insert your MCP server details using this JSON format:
{
"jetbrains": {
"transport": "streamable_http",
"url": "https://yourmcpserver.example/pathtothemcp/url"
}
}
Once configured, the AI agent is now able to use this MCP as a tool with access to all its functions and capabilities. Remember to change "jetbrains"
to the actual name of your MCP server if it differs and replace the URL with your own MCP server URL.
Section | Availability | Details/Notes |
---|---|---|
Overview | ✅ | Good summary present |
List of Prompts | ⛔ | No prompts documented |
List of Resources | ⛔ | No resources documented |
List of Tools | ⛔ | No tools described in available files |
Securing API Keys | ✅ | Uses env vars for IDE_PORT in config examples |
Sampling Support (less important in evaluation) | ⛔ | Not mentioned |
Based on the documentation, JetBrains MCP Server is well-maintained and popular, but lacks publicly documented prompt, resource, and tool primitives in this repository. Configuration is well-covered, and support for securing API keys is present. Overall, its utility is high for JetBrains IDE users, but documentation could be more thorough for MCP-specific features.
Has a LICENSE | ✅ (Apache-2.0) |
---|---|
Has at least one tool | ⛔ |
Number of Forks | 54 |
Number of Stars | 772 |
The JetBrains MCP Server acts as a proxy between AI clients and JetBrains IDEs, enabling AI agents to automate tasks, provide code navigation, and interact with IDE features via the Model Context Protocol (MCP).
The MCP Server is compatible with IntelliJ IDEA, PyCharm, WebStorm, and Android Studio, offering multi-platform support for AI integration.
Yes, with the MCP Server, you can automate repetitive tasks, manage projects, and utilize AI-powered navigation and suggestions directly within your JetBrains IDE.
You can secure your configuration by setting sensitive information like IDE ports using environment variables, as shown in the configuration examples above.
Currently, no specific prompt templates or additional resources are documented for this server. The integration focuses on enabling AI-IDE communication and automation.
Boost your development workflow by connecting JetBrains IDEs with FlowHunt’s AI capabilities through the MCP Server.
The JDBC MCP Server bridges AI assistants and SQL databases using the JDBC protocol, enabling real-time queries, analytics automation, and streamlined database ...
The Model Context Protocol (MCP) Server bridges AI assistants with external data sources, APIs, and services, enabling streamlined integration of complex workfl...
JupyterMCP enables seamless integration of Jupyter Notebook (6.x) with AI assistants through the Model Context Protocol. Automate code execution, manage cells, ...