The MCP (Model Context Protocol) DevTools server is a powerful tool that connects AI assistants with external services like Jira and Linear through a standardized protocol. It enables AI systems to interact with these services using natural language commands, making it easier to perform tasks like ticket management without leaving your workflow.
Jira
command
env JIRA_URL=https://[YOUR_WORKSPACE].atlassian.net JIRA_API_MAIL=[YOUR_EMAIL] JIRA_API_KEY=[YOUR_API_KEY] npx -y @mcp-devtools/jira
Linear
command
env LINEAR_API_KEY=[YOUR_API_KEY] npx -y @mcp-devtools/linear
JIRA_URL
: Your Jira instance URL (e.g., https://your-company.atlassian.net
)JIRA_API_MAIL
: Your Atlassian account emailJIRA_API_KEY
: Your Atlassian API key (create one at https://id.atlassian.com/manage-profile/security/api-tokens)LINEAR_API_KEY
: Your Linear API key (create one in Linear app: Settings → API → Create Key)Once configured, you can interact with these tools through natural language commands in the Cursor IDE.
Here are some common commands you can use with the Jira integration:
# Fetch a specific ticket
get ticket SCRUM-123
# Search for tickets
execute jql "project = SCRUM AND status = 'In Progress'"
# Get ticket details
read ticket SCRUM-123
# Create a new ticket
create ticket project=SCRUM summary="Fix login bug" description="Users can't log in" issuetype=Bug
Here are some common commands you can use with the Linear integration:
# Get a specific issue
get_issue SS-33
# Search for issues
search_issues "priority is high" with limit 5
# Create a new issue
create_issue for team "eng" titled "Fix API response format" with description "The API is returning incorrect data format" and priority 1
# List teams
list_teams
Connection Problems
Permission Errors
Command Not Found
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "Jira" '{"command":"env","args":["JIRA_URL=https://[YOUR_WORKSPACE].atlassian.net","JIRA_API_MAIL=[YOUR_EMAIL]","JIRA_API_KEY=[YOUR_API_KEY]","npx","-y","@mcp-devtools/jira"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"Jira": {
"command": "env",
"args": [
"JIRA_URL=https://[YOUR_WORKSPACE].atlassian.net",
"JIRA_API_MAIL=[YOUR_EMAIL]",
"JIRA_API_KEY=[YOUR_API_KEY]",
"npx",
"-y",
"@mcp-devtools/jira"
]
},
"Linear": {
"command": "env",
"args": [
"LINEAR_API_KEY=[YOUR_API_KEY]",
"npx",
"-y",
"@mcp-devtools/linear"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"Jira": {
"command": "env",
"args": [
"JIRA_URL=https://[YOUR_WORKSPACE].atlassian.net",
"JIRA_API_MAIL=[YOUR_EMAIL]",
"JIRA_API_KEY=[YOUR_API_KEY]",
"npx",
"-y",
"@mcp-devtools/jira"
]
},
"Linear": {
"command": "env",
"args": [
"LINEAR_API_KEY=[YOUR_API_KEY]",
"npx",
"-y",
"@mcp-devtools/linear"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect