jira-mcp-server
Enables read-only interaction with JIRA instances via MCP, allowing searching issues, worklogs, sprints, users, and projects through natural language.
README
JIRA MCP Server
A small, read-only Model Context Protocol server that exposes a JIRA Data Center / Server (or Cloud) instance to MCP clients such as Claude Code, Cursor, and Open WebUI.
It is stateless — no database, no volumes. It connects out to your JIRA over the REST API and serves over Streamable HTTP at http://<host>:8002/mcp. Every tool is read-only; the server never writes to JIRA.
Tools
13 tools across five areas:
Issues
search_issues— search by JQL (weekly summaries, per-person reports, blocked issues, …)get_issue_detail— full issue: description, comments, subtasks, links, changelogget_change_request— a full change request: standard fields plus the custom "Details" panel and attachment metadatasearch_change_requests— list/search change requests in a project, newest first
Worklogs
get_issue_worklogs— all worklogs for one issue (with comments)get_worklogs_updated_since— bulk-fetch worklogs across all projects for the last N days
Sprints
get_active_sprint— the active sprint for a boardget_sprint_issues— all issues in a sprintget_board_sprints— list sprints for a board by state
Users & Groups
get_group_members— members of a JIRA groupfind_user— resolve a name/email to a JIRA accountId
Projects & Metadata
list_projects— projects the token can seeget_project_statuses— valid status names for a project
Configuration
Copy .env.example to .env and fill in your values:
JIRA_URL=https://jira.example.com # or https://your-domain.atlassian.net for Cloud
JIRA_TOKEN=your-read-only-personal-access-token
JIRA_USERNAME= # leave empty for DC PAT; set for Cloud basic_auth
JIRA_VERIFY_SSL=false # false for internal self-signed certs
- JIRA Data Center / Server (8.14+): create a read-only Personal Access Token, put it in
JIRA_TOKEN, and leaveJIRA_USERNAMEempty (Bearer auth). - JIRA Cloud: set
JIRA_USERNAMEto your email andJIRA_TOKENto an API token (basic auth).
The .env file is gitignored — never commit real credentials.
Run
With Docker (recommended)
docker compose build
docker compose up -d
docker compose logs -f
The server listens on :8002 (override with JIRA_MCP_PORT). MCP endpoint: http://<host>:8002/mcp.
From source
pip install -r requirements.txt # or: uv sync
python main.py --check # verify JIRA connectivity, then exit
python server.py # serve MCP on :8002
python main.py --check runs a connectivity preflight against /rest/api/2/serverInfo and prints the real HTTP status / body on failure — handy for distinguishing a bad token from a wrong URL before the server starts.
Connect an MCP client
Claude Code:
claude mcp add --transport http jira http://<host>:8002/mcp
Point any other Streamable-HTTP MCP client at the same URL.
CLI
main.py doubles as a small CLI for ad-hoc queries:
python main.py --check # connectivity preflight
python main.py "alice" --field assignee # issues assigned to a user
python main.py --worklogs --person you@example.com \
--from-date 2026-06-01 --to-date 2026-06-10 # worklogs for a person
python main.py --worklogs --group engineering --per-person # per-person totals
Tests
pytest -q
The suite is fully mock-driven — no live JIRA connection required.
Notes
- All tools are read-only; the server never writes to JIRA.
get_change_requestreturns attachment metadata only (no bytes).- Behind a corporate firewall, build with an internal PyPI mirror:
docker compose build --build-arg PIP_INDEX_URL=https://pypi.example.com/simple
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.