The Jira MCP Server enables Large Language Models (LLMs) to interact with Jira through the Model Context Protocol. It provides a seamless integration for querying projects, boards, sprints, and issues directly from your AI assistant.
First, create or obtain your Jira Personal Access Token by following the official guide
Add the server configuration to your Claude Desktop:
For MacOS:
Add the following to ~/Library/Application Support/Claude/claude_desktop_config.json
:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@parassolanki/jira-mcp-server@latest"],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "[email protected]:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}
For Windows: Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"jira": {
"command": "cmd /c npx",
"args": ["-y", "@parassolanki/jira-mcp-server@latest"],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "[email protected]:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}
The list_projects
tool retrieves projects from Jira.
Parameters:
query
(optional string): Filter projects with a query stringmaxResults
(optional number, max: 100): Maximum number of results to returnexpand
(optional string): Include additional information like description, lead, issueTypes, etc.The list_boards
tool retrieves boards from a specific project.
Parameters:
projectKeyOrId
(string): Project key or IDname
(optional string): Board namemaxResults
(optional number, max: 100): Maximum number of results to returnstartAt
(optional number): Starting index for paginationtype
(optional string): Board type (either "scrum" or "kanban")The list_sprints_from_board
tool retrieves sprints from a specific board.
Parameters:
boardId
(string): Board IDmaxResults
(optional number, max: 100): Maximum number of results to returnstartAt
(optional number): Starting index for paginationThe list_issues_from_sprint
tool retrieves issues from a specific sprint.
Parameters:
boardId
(string): Board IDsprintId
(string): Sprint IDmaxResults
(optional number, max: 100): Maximum number of results to returnstartAt
(optional number): Starting index for paginationexpand
(optional string): Include additional information (e.g., "schema", "names")The create_issue
tool creates a new issue in Jira (currently only supports Task issue type).
Parameters:
projectKeyOrId
(string): Project key or IDsummary
(string): Issue title/summarydescription
(string): Issue descriptionHere are some examples of how to use the Jira MCP Server with Claude:
These prompts will trigger Claude to use the appropriate Jira MCP tools to fetch the requested information.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "jira" '{"command":"npx","args":["-y","@parassolanki/jira-mcp-server@latest"],"env":{"JIRA_PERSONAL_ACCESS_TOKEN":"[email protected]:your_personal_jira_access_token","JIRA_BASE_URL":"jira_base_url"}}'
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": "npx",
"args": [
"-y",
"@parassolanki/jira-mcp-server@latest"
],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "[email protected]:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}
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": "npx",
"args": [
"-y",
"@parassolanki/jira-mcp-server@latest"
],
"env": {
"JIRA_PERSONAL_ACCESS_TOKEN": "[email protected]:your_personal_jira_access_token",
"JIRA_BASE_URL": "jira_base_url"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect