Jira MCP Server
A local MCP server for managing Jira issues, enabling creation, update, deletion, search, and commenting on issues via natural language.
README
Jira MCP Server
A local MCP server for managing Jira issues. Supports 7 tools: get, create, update, delete, search issues, add and get comments.
Prerequisites
- Python 3.11+
- Jira Cloud account
- Jira API token → Generate here
Installation
Clone the repository
git clone https://github.com/your-repo/jira-mcp.git
cd jira-mcp
Create virtual environment and install dependencies
macOS / Linux
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Windows
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
Configuration
macOS / Linux — mcp.json
{
"servers": {
"JiraMCP": {
"type": "stdio",
"command": "/absolute/path/to/project/.venv/bin/python",
"args": [
"/absolute/path/to/project/server.py",
"--email", "your@email.com",
"--token", "YOUR_API_TOKEN",
"--url", "https://your-domain.atlassian.net",
"--project-key", "DEV"
]
}
}
}
Windows — mcp.json
{
"servers": {
"JiraMCP": {
"type": "stdio",
"command": "C:\\absolute\\path\\to\\project\\.venv\\Scripts\\python.exe",
"args": [
"C:\\absolute\\path\\to\\project\\server.py",
"--email", "your@email.com",
"--token", "YOUR_API_TOKEN",
"--url", "https://your-domain.atlassian.net",
"--project-key", "DEV"
]
}
}
}
Client Setup
GitHub Copilot (VS Code)
- Open VS Code
- Create
.vscode/mcp.jsonin your project root - Paste the configuration above (macOS or Windows)
- Open GitHub Copilot Chat → Agent mode
- Type
#JiraMCPto attach the server context - Verify: you should see
5 tools(or7 tools) discovered in the output log
Quick check in VS Code Output:
[info] Discovered 7 tools
Claude Code (CLI)
Add the server to your Claude Code config:
macOS / Linux
claude mcp add jira-mcp \
/absolute/path/to/.venv/bin/python \
/absolute/path/to/server.py \
--email your@email.com \
--token YOUR_API_TOKEN \
--url https://your-domain.atlassian.net \
--project-key DEV
Windows
claude mcp add jira-mcp ^
C:\path\to\.venv\Scripts\python.exe ^
C:\path\to\server.py ^
--email your@email.com ^
--token YOUR_API_TOKEN ^
--url https://your-domain.atlassian.net ^
--project-key DEV
Or manually edit ~/.claude/mcp.json:
{
"mcpServers": {
"jira-mcp": {
"command": "/absolute/path/to/.venv/bin/python",
"args": [
"/absolute/path/to/server.py",
"--email", "your@email.com",
"--token", "YOUR_API_TOKEN",
"--url", "https://your-domain.atlassian.net",
"--project-key", "DEV"
]
}
}
}
Verify connection:
claude mcp list
Available Tools
| Tool | Description | Read Only | Destructive |
|---|---|---|---|
get_issue |
Get issue details by key | ✅ | ❌ |
create_issue |
Create a new issue | ❌ | ❌ |
update_issue |
Update summary or description | ❌ | ❌ |
delete_issue |
Permanently delete an issue | ❌ | ✅ |
search_issues |
Search using JQL | ✅ | ❌ |
add_comment |
Add a comment to an issue | ❌ | ❌ |
get_comments |
Get all comments for an issue | ✅ | ❌ |
Usage Examples
get issue DEV-1
create issue with summary "Login button broken" type Bug
update issue DEV-1 summary "Login button broken on mobile"
search issues in project DEV where status is Open order by created DESC
add comment to DEV-1 "Reproduced on iOS 17, cannot reproduce on Android"
get all comments for DEV-1
delete issue DEV-5
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.