Jira MCP is a Go-based connector enabling AI assistants like Claude to interact with Atlassian Jira. This tool provides an interface for AI models to perform common Jira operations such as creating issues, adding comments, tracking sprints, and transitioning issues through workflows.
Several installation options are available:
jira-mcp_linux_amd64
for Linuxjira-mcp_darwin_amd64
for macOSjira-mcp_windows_amd64.exe
for Windowschmod +x jira-mcp_*
sudo mv jira-mcp_* /usr/local/bin/jira-mcp
go install github.com/nguyenvanduocit/jira-mcp@latest
docker pull ghcr.io/nguyenvanduocit/jira-mcp:latest
docker build -t jira-mcp .
The following environment variables are required:
ATLASSIAN_HOST=your_atlassian_host
ATLASSIAN_EMAIL=your_email
ATLASSIAN_TOKEN=your_token
You can set these:
.env
file (use the -env
flag)Choose one of the installation methods above (Docker recommended).
{
"mcpServers": {
"jira": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "ATLASSIAN_HOST=your_jira_instance.atlassian.net",
"-e", "[email protected]",
"-e", "ATLASSIAN_TOKEN=your_atlassian_api_token",
"ghcr.io/nguyenvanduocit/jira-mcp:latest"
]
}
}
}
{
"mcpServers": {
"jira": {
"command": "/path/to/jira-mcp",
"args": ["-env", "/path/to/.env"]
}
}
}
Verify the connection by asking Claude in Cursor:
@https://your_jira_instance.atlassian.net/browse/PROJ-123 get issue
Jira MCP enables AI assistants to:
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.