Jira Integration
STDIOModel Context Protocol server for Jira integration, allowing AI assistants to interact with Jira.
Model Context Protocol server for Jira integration, allowing AI assistants to interact with Jira.
A Model Context Protocol (MCP) server for Jira integration. This server allows AI assistants like Claude to interact with Jira using MCP.
Author: Samuel Rizzo
# Clone the repository git clone https://github.com/samuelrizzo/jira-mcp-server.git cd jira-mcp-server # Install dependencies npm install # Build the project npm run build
Add the following configuration to your cursor/windsurf mcp settings file:
{ "mcpServers": { "jira-mcp": { "command": "node", "args": ["./dist/index.js"], "env": { "JIRA_HOST": "your-domain.atlassian.net", "JIRA_EMAIL": "[email protected]", "JIRA_API_TOKEN": "your-api-token-here" } } } }
Generate a Jira API token:
Note your Jira host URL (e.g., your-domain.atlassian.net
) and email address associated with your Atlassian account.
Add these credentials to your MCP server configuration.
mcp_jira_list_projects
)Lists all Jira projects the authenticated user has access to.
Parameters:
jiraHost
: Your Jira domain (e.g., 'your-domain.atlassian.net')email
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_get_issue
)Retrieves detailed information about a specific Jira issue.
Parameters:
issueKey
: The Jira issue key (e.g., 'PROJECT-123')jiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_search_issues
)Searches for issues in a specific project, optionally filtered by assignee.
Parameters:
projectKey
: The Jira project keyassigneeName
: (Optional) Filter issues by assignee namejiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_list_project_members
)Lists all members of a specific Jira project.
Parameters:
projectKey
: The Jira project keyjiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_check_user_issues
)Checks if a user is a member of a project and lists their assigned issues.
Parameters:
projectKey
: The Jira project keyuserName
: The display name of the user to checkjiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_create_issue
)Creates a new issue in a Jira project with specified details.
Parameters:
projectKey
: The Jira project keysummary
: The title/summary of the issuedescription
: Detailed description of the issueissueType
: (Optional) Type of issue (e.g., 'Task', 'Bug', 'Story'), defaults to 'Task'assigneeName
: (Optional) The display name of the person to assign the issue toreporterName
: (Optional) The display name of the person reporting the issuesprintId
: (Optional) ID of the sprint to add the issue tojiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenmcp_jira_list_sprints
)Lists current sprints in Jira with filtering options.
Parameters:
boardId
: (Optional) Jira board ID to filter sprints by a specific boardprojectKey
: (Optional) Project key to find sprints associated with the projectstate
: (Optional) Sprint state to filter by (active, future, closed, or all), defaults to 'active'jiraHost
: Your Jira domainemail
: Your Jira emailapiToken
: Your Jira API tokenHere are some example queries you can use with Claude:
"List all Jira projects in PROJECT"
"Get details for issue PROJECT-123"
"Search for issues assigned to John in PROJECT"
"List all members of PROJECT"
"Check what issues are assigned to Jane in PROJECT"
"Create a new bug issue titled 'Login page error' in PROJECT"
"List active sprints for PROJECT"
This project is under active development. New tools and features are being added regularly to expand the integration capabilities with Jira. Future updates will include:
Stay tuned by watching or starring the repository for updates.
This is an open-source project and contributions are welcome! To contribute:
This code is completely open source. You are free to:
No restrictions - do whatever you want with the code!
MIT