Jira MCP is a Go-based connector that enables AI assistants like Claude to interact with Atlassian Jira. This tool provides a comprehensive interface for AI models to perform common Jira operations through natural language, covering everything from issue management to sprint planning.
Before you begin, you'll need:
# Pull the latest image
docker pull ghcr.io/nguyenvanduocit/jira-mcp:latest
# Test it works (replace with your details)
docker run --rm \
-e ATLASSIAN_HOST=your-company.atlassian.net \
-e [email protected] \
-e ATLASSIAN_TOKEN=your-api-token \
ghcr.io/nguyenvanduocit/jira-mcp:latest \
--http_port 3000
jira-mcp_darwin_amd64
jira-mcp_linux_amd64
jira-mcp_windows_amd64.exe
chmod +x jira-mcp_*
sudo mv jira-mcp_* /usr/local/bin/jira-mcp
go install github.com/nguyenvanduocit/jira-mcp@latest
{
"mcpServers": {
"jira": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "ATLASSIAN_HOST=your-company.atlassian.net",
"-e", "[email protected]",
"-e", "ATLASSIAN_TOKEN=your-api-token",
"ghcr.io/nguyenvanduocit/jira-mcp:latest"
]
}
}
}
{
"mcpServers": {
"jira": {
"command": "/usr/local/bin/jira-mcp",
"env": {
"ATLASSIAN_HOST": "your-company.atlassian.net",
"ATLASSIAN_EMAIL": "[email protected]",
"ATLASSIAN_TOKEN": "your-api-token"
}
}
}
}
List my Jira projects
Show me issues assigned to me
What's in the current sprint?
If you see Jira data, your setup is complete!
Create a .env
file for easier management:
# .env file
ATLASSIAN_HOST=your-company.atlassian.net
[email protected]
ATLASSIAN_TOKEN=your-api-token
Then use it:
# With binary
jira-mcp -env .env
# With Docker
docker run --rm -i --env-file .env ghcr.io/nguyenvanduocit/jira-mcp:latest
For development and testing, you can run in HTTP mode:
# Start HTTP server on port 3000
jira-mcp -env .env -http_port 3000
Then configure Cursor with:
{
"mcpServers": {
"jira": {
"url": "http://localhost:3000/mcp"
}
}
}
Once configured, you can ask Claude to help with Jira tasks using natural language:
❌ "Connection failed" or "Authentication error"
ATLASSIAN_HOST
(should be like company.atlassian.net
)❌ "No MCP servers found"
❌ "Permission denied" errors
-http_port
to see detailed error messagesTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "jira" '{"command":"docker","args":["run","--rm","-i","-e","ATLASSIAN_HOST=your-company.atlassian.net","-e","[email protected]","-e","ATLASSIAN_TOKEN=your-api-token","ghcr.io/nguyenvanduocit/jira-mcp:latest"]}'
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": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"ATLASSIAN_HOST=your-company.atlassian.net",
"-e",
"[email protected]",
"-e",
"ATLASSIAN_TOKEN=your-api-token",
"ghcr.io/nguyenvanduocit/jira-mcp:latest"
]
}
}
}
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": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"ATLASSIAN_HOST=your-company.atlassian.net",
"-e",
"[email protected]",
"-e",
"ATLASSIAN_TOKEN=your-api-token",
"ghcr.io/nguyenvanduocit/jira-mcp:latest"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect