Jira MCP Server
by sooperset ยท โญ 567 stars ยท updated 3 months ago
Issue and project management with Jira. Create tickets, update status, search issues, manage sprints, and query project data through your AI assistant.
75
Good
Quality Score Breakdown
maintenance76/100
community74/100
documentation76/100
compatibility74/100
Use Cases
- โcreate Jira tickets
- โupdate issue status
- โsearch issues
- โsprint management
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"jira": {
"command": "python",
"args": [
"-m",
"mcp_atlassian"
],
"env": {
"JIRA_URL": "https://yourcompany.atlassian.net",
"JIRA_EMAIL": "you@company.com",
"JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"jira": {
"command": "python",
"args": [
"-m",
"mcp_atlassian"
],
"env": {
"JIRA_URL": "https://yourcompany.atlassian.net",
"JIRA_EMAIL": "you@company.com",
"JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"jira": {
"command": "python",
"args": [
"-m",
"mcp_atlassian"
],
"env": {
"JIRA_URL": "https://yourcompany.atlassian.net",
"JIRA_EMAIL": "you@company.com",
"JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
}
}
}
}
}