Jira MCP Server
Status: Getestet
MCP Server for Jira Server/Data Center.
Setup
- Install dependencies:
cd JIRA-MCP
pip install -e .
- Configure
config.json:
{
"jira": {
"base_url": "https://jira.example.com",
"token": "YOUR_PERSONAL_ACCESS_TOKEN",
"verify_ssl": true
},
"server": {
"name": "jira-mcp",
"version": "1.0.0"
}
}
- Get a Personal Access Token from Jira:
- Go to Profile → Personal Access Tokens
- Create a new token with appropriate permissions
Claude Desktop Integration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"jira": {
"command": "python",
"args": ["-m", "jira_mcp.server"],
"cwd": "/path/to/JIRA-MCP"
}
}
}
Available Tools
Issues
issue_get- Get issue by keyissue_create- Create new issueissue_update- Update issueissue_delete- Delete issueissue_search- JQL searchissue_transitions- Get available transitionsissue_transition- Change status
Comments
comment_list- List commentscomment_add- Add commentcomment_update- Edit commentcomment_delete- Delete comment
Attachments
attachment_list- List attachmentsattachment_add- Upload fileattachment_delete- Delete attachment
Links
link_create- Link issueslink_delete- Remove linkremotelink_list- List remote linksremotelink_add- Add remote linkremotelink_delete- Remove remote link
Votes & Watchers
vote_add/vote_removewatcher_list/watcher_add/watcher_remove
Bulk
bulk_edit- Edit multiple issues
Projects
project_list- List projectsproject_get- Get project detailsproject_components- Get componentsproject_versions- Get versionsproject_roles- Get roles
Users
user_search- Search usersuser_picker- Autocompletemyself- Current user info
Types (readonly)
issuetype_listpriority_listresolution_listlinktype_list
JQL & Labels
jql_validate- Validate JQLlabel_list- List labels






