MCP DevTools
MCP DevTools: A suite of Model Context Protocol servers enabling AI assistants to interact with developer tools and services
Overview
MCP DevTools is a suite of Model Context Protocol servers that enable AI assistants to interact with developer tools and services seamlessly.
To use MCP DevTools, configure the integration in your Cursor IDE by adding new MCP servers for services like Jira and Linear, and set the required environment variables.
- Seamless integration with external services and tools. - Extensible framework for creating new integrations. - Powerful interactions allowing AI to access and manipulate data. - Robust integrations specifically for Jira and Linear. - Developer-friendly setup with comprehensive documentation.
- Automating ticket management in Jira.
- Streamlining issue tracking in Linear.
- Enhancing productivity through AI-driven commands in development environments.
Add to your AI client
Use these steps to connect MCP DevTools in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-devtools-dxheroes": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-devtools-dxheroes": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-devtools-dxheroes": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-devtools-dxheroes": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-devtools-dxheroes": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-devtools-dxheroes": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-devtools-dxheroes"
]
}
}
}FAQ
Is MCP DevTools free to use?
Yes! MCP DevTools is free to use for everyone.
What services can I integrate with MCP DevTools?
Currently, it supports Jira and Linear, with plans for more integrations in the future.
What is the current status of MCP DevTools?
The project is in beta, and APIs may change during this phase.