Git Jira MCP Server
@1pone
Git Jira MCP Server について
这是一个用于获取 Jira 需求信息的 MCP 服务器,基于当前 Git 分支名自动获取对应的 Jira 需求详情。
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"git-jira": {
"command": "npx",
"args": [
"-y",
"git-jira-mcp-server"
],
"env": {
"JIRA_INSTANCE_URL": "https://your-domain.atlassian.net",
"JIRA_USER_EMAIL": "[email protected]",
"JIRA_API_KEY": "your_api_token",
"JIRA_BRANCH_PATTERNS": "dev_[a-zA-Z]+-([A-Z]+-\\d+),feature/[a-zA-Z]+-([A-Z]+-\\d+),bugfix/[a-zA-Z]+-([A-Z]+-\\d+),dev_[a-zA-Z]+_([A-Z]+-\\d+)"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Git Jira MCP Server?
A Model Context Protocol (MCP) server that automatically detects the current Git branch name, extracts a Jira issue ID from it, and fetches the corresponding Jira issue details. It provides title, description, status, priority, and assignee information directly in your MCP-compatible client. Aimed at developers who want to see Jira context without leaving their coding environment.
How to use Git Jira MCP Server?
Configure the server in your MCP client’s mcp.json file with the command npx -y git-jira-mcp-server and set the required environment variables: JIRA_INSTANCE_URL, JIRA_USER_EMAIL, JIRA_API_KEY, and optionally JIRA_BRANCH_PATTERNS. The server will then match your current Git branch against the configured patterns and fetch the corresponding Jira issue.
Key features of Git Jira MCP Server
- Automatically extracts Jira ID from current Git branch
- Fetches Jira issue title, description, status, priority, assignee
- Configurable branch naming patterns via environment variables
- Clear error messages for branch format, API failure, missing env vars
- Lightweight, no persistent storage – fetches live data
Use cases of Git Jira MCP Server
- Quickly view the Jira ticket you're working on without leaving your IDE
- Get Jira issue context directly in MCP‑enabled chat or assistant tools
- Automate branch‑to‑issue mapping across multiple repositories
FAQ from Git Jira MCP Server
How does Git Jira MCP Server identify the Jira issue?
It reads the current Git branch name and extracts the Jira ID using pattern matching. The default patterns support formats like dev_[name]-[JIRA-ID], feature/[name]-[JIRA-ID], and bugfix/[name]-[JIRA-ID].
What environment variables are required?
JIRA_INSTANCE_URL, JIRA_USER_EMAIL, and JIRA_API_KEY are mandatory. JIRA_BRANCH_PATTERNS is optional and allows custom branch‑to‑ID extractors.
What happens if the branch name doesn't match any pattern?
The server returns a clear error indicating a branch name format mismatch. It also handles API request failures and missing environment variables with distinct messages.
How do I obtain a Jira API token?
Visit [https://id.atlassian.com/manage-profile/security/api-tokens](https
「バージョン管理」の他のコンテンツ
Atlassian Data Center MCP
b1ffMCP servers for the Atlassian products (Bitbucket, Confluence, JIRA) of the Data Center version
Test
skillsCreate a site or blog from your GitHub repositories with GitHub Pages.
AIO-MCP Server
athapong🚀 All-in-one MCP server with AI search, RAG, and multi-service integrations (GitLab/Jira/Confluence/YouTube) for AI-enhanced development workflows. Folk from https://github.com/nguyenvanduocit/all-in-one-model-context-protocol
Integrate MCP with GitHub Copilot
skillsLearn how to use MCP Servers with GitHub Copilot
Atlassian Jira MCP Server
aashariNode.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracking workflows.
コメント