jira-server-mcp
Jira Server MCP
MCP-Server ohne Abhängigkeiten für selbstgehostetes Jira Server / Data Center – funktioniert mit Jira 8.x einschließlich Versionen vor 8.14 (kein Personal Access Token erforderlich).
Der MCP-Server für Jira Server / Data Center ist vollständig abhängigkeitsfrei und mit der Python-Standardbibliothek umgesetzt. Es muss kein Drittanbieterpaket per pip install installiert werden; Python 3.8+ genügt.
Warum das nötig ist
Der offizielle Atlassian-MCP-Server unterstützt nur Jira Cloud, keine lokale Bereitstellung.
Das gängige Open-Source-Paket
mcp-atlassiansetzt Jira Server 8.14+ voraus, weil es Personal Access Tokens (PAT) benötigt.Viele Unternehmen setzen weiterhin 8.13 und ältere Versionen ein, ohne PAT, und können daher nur Basic Auth (Benutzername + Passwort) verwenden.
Dieser Server unterstützt sowohl Basic Auth als auch PAT und deckt damit alle 8.x-Versionen ab.
Related MCP server: jira-mcp
Verfügbare Tools
Tool | Zweck |
| Login prüfen und aktuelles Konto anzeigen |
| Sichtbare Projekte auflisten |
| JQL-Suche |
| Details von Anforderung/Bug abrufen |
| Jira-Issue anlegen |
| Titel/Beschreibung/Priorität/Labels ändern |
| Kommentar hinzufügen |
| Verfügbare Statusübergänge abfragen |
| Statusübergang ausführen |
| Zuständigen Bearbeiter (Assignee) ändern |
Umgebungsvariablen
Variable | Erforderlich | Beschreibung |
| Ja | Jira-Adresse, z. B. |
| Bei Basic Auth erforderlich | Jira-Benutzername |
| Bei Basic Auth erforderlich | Jira-Passwort |
| Bei Verwendung von PAT | Personal Access Token (8.14+); bei gesetztem Wert bevorzugt |
| Nein | Standard: |
| Nein | Anfrage-Timeout in Sekunden, Standardwert 30 |
Authentifizierung. Ist
JIRA_TOKENgesetzt, wird ein Bearer Token (PAT) verwendet; andernfalls erfolgt die Anmeldung per Basic Auth mitJIRA_USERNAME+JIRA_PASSWORD.
Installation und Ausführung
Wählen Sie eine der drei Möglichkeiten:
# 方式一:pipx 安装(推荐,全局可用 jira-server-mcp 命令)
pipx install git+https://github.com/zhao1749501038/jira-server-mcp
# 方式二:uvx 直接运行(不落盘)
uvx --from git+https://github.com/zhao1749501038/jira-server-mcp jira-server-mcp
# 方式三:直接运行源码(零依赖,连 pip 都不用)
git clone https://github.com/zhao1749501038/jira-server-mcp
python3 jira-server-mcp/jira_mcp_server.pyAnbindung an MCP-Clients
WorkBuddy
~/.workbuddy/mcp.json:
{
"mcpServers": {
"jira": {
"command": "/usr/bin/python3",
"args": ["/path/to/jira_mcp_server.py"],
"env": {
"JIRA_BASE_URL": "https://jira.yourcompany.com",
"JIRA_USERNAME": "your-username",
"JIRA_PASSWORD": "your-password"
}
}
}
}Claude Code
claude mcp add --scope user jira \
--env JIRA_BASE_URL=https://jira.yourcompany.com \
--env JIRA_USERNAME=your-username --env JIRA_PASSWORD=your-password \
-- /usr/bin/python3 /path/to/jira_mcp_server.pyClaude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"jira": {
"command": "/usr/bin/python3",
"args": ["/path/to/jira_mcp_server.py"],
"env": {
"JIRA_BASE_URL": "https://jira.yourcompany.com",
"JIRA_USERNAME": "your-username",
"JIRA_PASSWORD": "your-password"
}
}
}
}Cursor
~/.cursor/mcp.json, wie bei Claude Desktop.
Codex
~/.codex/config.toml:
[mcp_servers.jira]
command = "/usr/bin/python3"
args = ["/path/to/jira_mcp_server.py"]
env = { JIRA_BASE_URL = "https://jira.yourcompany.com", JIRA_USERNAME = "your-username", JIRA_PASSWORD = "your-password" }Sicherheitshinweis
Zugangsdaten liegen im Klartext in der Client-Konfiguration; bitte nicht in Git einchecken. Bei Empfehlung ein separates Bot-Konto mit minimalen Berechtigungen verwenden (nur Ansehen/Erstellen/Bearbeiten/Kommentieren/Statusübergang/Zuweisen, keine Lösch- und Systemverwaltungsrechte).
Bei der Nutzung durch mehrere Personen empfiehlt es sich, den Server als HTTP-MCP-Server mit zentraler Authentifizierung bereitzustellen, anstatt dass jeder Benutzer eigene Passwörter speichert.
Lizenz
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.1230910MIT
- FlicenseNot gradedqualityCmaintenanceA local MCP server that wraps the Jira REST API v3, enabling issue management, searching, commenting, and transitions for openmrs.atlassian.net via Basic Auth.1
- FlicenseBqualityBmaintenanceSmall MCP server for connecting to enterprise Jira using a personal access token. It enables issue operations, project listing, JQL searches, and attachment handling.17
- AlicenseAqualityBmaintenanceMCP server for Jira Server/Data Center that enables issue retrieval, JQL search, comment posting, and Tempo worklog queries via the atlassian-python-api.19MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP Server for JFrog, providing tools for development and artifact management.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/zhao1749501038/jira-server-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server