JIRA MCP Server
Click on "Deploy 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 MCP ServerWhat's the status of 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 Server
A portable MCP (Model Context Protocol) server for JIRA integration with Claude Code and other MCP-compatible clients.
Features
35 JIRA Tools - Complete coverage of JIRA operations
Portable - Install via pip from GitHub, use in any project
Multiple Auth Methods - API Token (Cloud) and PAT (Server/Data Center)
Read-Only Mode - Safely disable write operations
Tool Filtering - Enable/disable specific tools
Async - Built on httpx for efficient async operations
Related MCP server: Jira Cloud MCP Server
Installation
# Install from GitHub
pip install git+https://github.com/scarnyc/jira-mcp-server
# Or clone and install locally
git clone https://github.com/scarnyc/jira-mcp-server
cd jira-mcp-server
pip install -e .Configuration
Environment Variables
Create a .env file or set environment variables:
# Required
JIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your-email@example.com
JIRA_API_TOKEN=your-api-token
# Optional
JIRA_READ_ONLY=false # Disable write operations
JIRA_ENABLED_TOOLS= # Comma-separated tool names (empty = all)
JIRA_LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR
JIRA_TIMEOUT=30 # Request timeout in seconds
JIRA_VERIFY_SSL=true # SSL certificate verificationGetting API Token
Go to Atlassian API Tokens
Click "Create API token"
Copy the token and set as
JIRA_API_TOKEN
Claude Code Integration
Add to your project's .mcp.json:
{
"mcpServers": {
"jira": {
"command": "jira-mcp",
"args": ["--transport", "stdio"],
"env": {
"JIRA_URL": "${JIRA_URL}",
"JIRA_USERNAME": "${JIRA_USERNAME}",
"JIRA_API_TOKEN": "${JIRA_API_TOKEN}"
}
}
}
}Then restart Claude Code and verify with /mcp.
Usage
CLI Commands
# Start the MCP server (stdio transport)
jira-mcp serve
# Start with SSE transport
jira-mcp serve --transport sse --port 8080
# Check connection
jira-mcp check
# List available tools
jira-mcp tools
# Show version
jira-mcp --versionWith Claude Code
Once configured, you can use natural language to interact with JIRA:
> What's the status of PROJ-123?
> Create a bug: Login fails on slow connections
> Move PROJ-123 to In Progress
> Show me all unresolved bugs in the PROJ project
> Add comment to PROJ-123: Started implementation
> What's in the current sprint?Available Tools
Issues (7 tools)
Tool | Description |
| Get issue details by key |
| Create a new issue |
| Update an existing issue |
| Delete an issue |
| Search issues using JQL |
| Create multiple issues |
| Get issue change history |
Comments (2 tools)
Tool | Description |
| Add a comment to an issue |
| Get comments for an issue |
Transitions (2 tools)
Tool | Description |
| Get available workflow transitions |
| Move issue to a new status |
Projects (2 tools)
Tool | Description |
| List all accessible projects |
| Get issues for a project |
Boards (2 tools)
Tool | Description |
| List agile boards |
| Get issues on a board |
Sprints (4 tools)
Tool | Description |
| Get sprints for a board |
| Get issues in a sprint |
| Create a new sprint |
| Update a sprint |
Epics (2 tools)
Tool | Description |
| Link an issue to an epic |
| Get issues in an epic |
Links (4 tools)
Tool | Description |
| Get available link types |
| Create a link between issues |
| Remove a link |
| Create an external link |
Worklogs (2 tools)
Tool | Description |
| Log time on an issue |
| Get worklogs for an issue |
Versions (3 tools)
Tool | Description |
| Get versions for a project |
| Create a new version |
| Create multiple versions |
Attachments (2 tools)
Tool | Description |
| Download attachments |
| Add an attachment |
Users (2 tools)
Tool | Description |
| Get user profile |
| Search for users |
Fields (1 tool)
Tool | Description |
| Get field definitions |
Read-Only Mode
To prevent accidental modifications, enable read-only mode:
JIRA_READ_ONLY=trueOr via CLI:
jira-mcp serve --read-onlyWrite operations will return an error message when read-only mode is enabled.
Tool Filtering
Enable only specific tools:
JIRA_ENABLED_TOOLS=jira_get_issue,jira_search,jira_get_transitionsDisabled tools will return an error message when invoked.
Development
# Clone the repository
git clone https://github.com/scarnyc/jira-mcp-server
cd jira-mcp-server
# Install with Poetry
poetry install
# Run tests
poetry run pytest
# Run with coverage
poetry run pytest --cov=jira_mcp --cov-report=html
# Lint and format
poetry run ruff check .
poetry run ruff format .
# Type checking
poetry run mypy jira_mcpLicense
MIT License - see LICENSE for details.
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect to Atlassian Jira, Confluence, Loom, and more to search, create, and manage your work.
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Read and edit GA4, Search Console and Google Tag Manager from any MCP client. 29 tools.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides tools for AI assistants to interact with JIRA APIs, enabling them to read, create, update, and manage JIRA issues through standardized MCP tools.66 npm3MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for interacting with Jira Cloud instances. Enables issue management, JQL queries, project and sprint management, and batch operations via natural language interfaces.195 npm4MIT
- FlicenseNot gradedqualityDmaintenanceEnables natural language interaction with Jira Cloud tickets, including listing, searching, creating, and updating issues through a set of MCP tools.-
- FlicenseNot gradedqualityCmaintenanceEnables interaction with JIRA through the MCP interface, allowing users to manage issues, sprints, and users via natural language commands.-