jira-mcp-server
by ParasSolanki·★ 3·Score 30
MCP server for Jira API integration with tools for listing projects, boards, sprints and issues.
Overview
This is a Model Context Protocol (MCP) server that bridges Jira's REST API with LLM applications. It provides essential Jira operations through MCP tools, including listing projects, boards, sprints, and issues. The server currently supports task creation but is planned to expand to other issue types in future updates. The implementation uses TypeScript with clear code structure and follows MCP protocol specifications.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server for basic Jira integration needs, especially if you primarily need to retrieve project, board, sprint, and issue information and create simple task issues.
When NOT to choose this
Don't choose this if you need advanced issue management features like updating/deleting issues, managing comments, or working with non-task issue types.
Tools this server exposes
5 tools extracted from the READMElist_projectsList projects from Jira with optional filtering and expansion parameters.
list_boardsList boards from a specified project with optional filtering.
list_sprints_from_boardList sprints from a specific board with pagination options.
list_issues_from_sprintList issues from a specific sprint with pagination and expansion options.
create_issueCreate a task issue in Jira with project key, summary, and description.
Comparable tools
Installation
Installation
Prerequisites
- Node.js version 22.12.0 or above
- Jira Personal Access Token
Configuration for Claude Desktop
Add the following server configuration to your Claude Desktop config file:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows: [Configuration Guide](https://gist.github.com/feveromo/7a340d7795fca1ccd535a5802b976e1f)
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@parassolanki/jira-mcp-server@latest"],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "email@example.com:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}For Windows:
{
"mcpServers": {
"jira": {
"command": "cmd /c npx",
"args": ["-y", "@parassolanki/jira-mcp-server@latest"],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "email@example.com:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}FAQ
- What Jira operations does this MCP server support?
- Currently it supports listing projects, boards, sprints, issues, and creating task issues. Other operations are planned in future updates.
- How do I obtain a Jira Personal Access Token?
- You can create a Personal Access Token following the official Atlassian guide: https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html
Compare jira-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.