jira-mcp
Fetches Jira issue data, providing tools to retrieve issue details from a Jira instance.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@jira-mcpfetch issue PROJ-123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
jira-mcp
MCP server for fetching Jira issue data.
Required Settings
Python
This project requires Python 3.14 or newer.
The required version is declared in:
.python-versionpyproject.tomluv.lock
Dependency Management
Use uv as the Python dependency and virtual environment manager for this project.
Install uv if it is not already available:
curl -LsSf https://astral.sh/uv/install.sh | shThen install the project dependencies from pyproject.toml and uv.lock:
uv syncDo not install dependencies directly with pip; keep dependency changes in pyproject.toml and refresh the lockfile with uv.
Environment Variables
Create a local .env file from the example file:
cp .env.example .envSet these values in .env:
JIRA_EMAIL=your-email@example.com
JIRA_API_TOKEN=your-jira-token
JIRA_DOMAIN=your-company.atlassian.netRequired by the current code:
JIRA_EMAIL: Email address used for Jira API authentication.JIRA_API_TOKEN: Jira API token for the account above.JIRA_DOMAIN: Jira site domain, for exampleyour-company.atlassian.net.
Included in .env.example but not currently used by main.py:
MODEL_NAMEOPENAI_API_KEY
Jira Access
The Jira API call uses:
https://<JIRA_DOMAIN>/rest/api/3/issue/<ISSUE_KEY>The Jira account must have permission to view the requested issue. For Atlassian Cloud, use an API token rather than your account password.
Related MCP server: Work Integrations MCP
Running
Run the MCP server over stdio:
uv run main.pyThe server exposes the fetch_jira MCP tool.
Cursor MCP Setup
To use this MCP server from another project in Cursor, create or update this file in that project:
.cursor/mcp.jsonAdd the Jira MCP server configuration:
{
"mcpServers": {
"jira-server": {
"command": "uv",
"args": [
"--directory",
"/path/to/jira-mcp",
"run",
"main.py"
]
}
}
}Replace /path/to/jira-mcp with the local path to this project on your computer.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server for interacting with self-hosted Jira instances using Personal Access Token (PAT) authentication. It enables users to perform CRUD operations on issues, search with JQL, manage comments, and list projects through the Jira REST API.Last updated124419MIT
- Alicense-qualityDmaintenanceAn MCP server that enables interaction with Jira to fetch issues by key and perform JQL searches. It provides a foundation for integrating multiple work systems, with planned support for Slack and GitHub.Last updated684MIT
- Alicense-qualityCmaintenanceCustom MCP server for interacting with Jira, supporting issue management, search, and project operations.Last updated6842MIT
- Flicense-qualityDmaintenanceMCP server for JIRA Cloud REST API v3, enabling issue search, creation, updates, comments, and transitions.Last updated
Related MCP Connectors
MCP server for Google search results via SERP API
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trongtai1801/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server