JIRA MCP Server
🔗 カーソル用 JIRA MCP サーバー
✨ 特徴
📋カーソルから直接 JIRA にアクセスする
IDE を離れずに割り当てられた課題を表示
1つのコマンドで特定の問題に関する詳細情報を取得
JIRA の問題をシームレスにローカルタスクに変換
⏰システム時間の統合
カスタマイズ可能な日付と時刻のフォーマット
date-fns によるロケールサポート
Related MCP server: JIRA MCP Server
🚀 クイックスタート
インストール
# Clone the repository
git clone https://github.com/Dsazz/mcp-jira.git
cd mcp-jira
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Edit .env with your JIRA credentials構成
次の変数を含む.envファイルを作成します。
JIRA_HOST=https://your-instance.atlassian.net
JIRA_USERNAME=your-email@example.com
JIRA_API_TOKEN=your-jira-api-token-here🔑 JIRA APIトークンに関する重要なお知らせ
トークンには、
=記号などの特殊文字を含めることができます。
.envファイル内の1行にトークンを配置しますトークン値を引用符で囲まないでください
Atlassianから提供されたトークンを正確に貼り付けます
🛠️ 開発ツール
MCP検査官
MCP Inspector は、MCP サーバーをテストおよびデバッグするための強力なツールです。
# Run the inspector (no separate build step needed)
npm run inspect検査官は自動的に次の操作を実行します。
.envから環境変数を読み込みます占有されているポート(5175、3002)をクリーンアップします
必要に応じてプロジェクトを構築する
設定に従ってMCPサーバーを起動します
インスペクターUIを起動します
http://localhost:5175?proxyPort=3002のインスペクターにアクセスします。
ポートの競合が発生した場合:
npm run cleanup-portsインスペクタを使ったデバッグ
インスペクター UI を使用すると、次のことが可能になります。
利用可能なすべての MCP 機能を表示
ツールを実行して応答を検証する
JSON通信を分析する
異なるパラメータでテストする
詳細については、 MCP Inspector GitHub リポジトリを参照してください。
Claude Desktopとの統合
Claude を使って直接 MCP サーバーをテストします。
サーバーを構築して実行します。
npm run build # You must build the project before running it node dist/index.jsClaude デスクトップを設定します。
nano ~/Library/Application\ Support/Claude/claude_desktop_config.jsonMCP 構成を追加します。
{ "mcpServers": { "JIRA Tools": { "command": "node", "args": ["/absolute/path/to/your/project/dist/index.js"], "env": { "JIRA_USERNAME": "your-jira-username", "JIRA_API_TOKEN": "your-jira-api-token", "JIRA_HOST": "your-jira-host.atlassian.net" } } } }Claude Desktop を再起動して、次のコマンドでテストします。
What time is it right now?または
Show me my assigned JIRA issues.
🔌 カーソル IDE との統合
⚠️ 重要: Cursor IDE または Claude Desktop と統合する前に、
npm run buildを使用してプロジェクトをビルドする必要があります。
この MCP サーバーを Cursor IDE の MCP 構成に追加します。
{
"mcpServers": {
"JIRA Tools": {
"command": "node",
"args": ["/absolute/path/to/your/project/dist/index.js"],
"env": {
"JIRA_USERNAME": "your-jira-username",
"JIRA_API_TOKEN": "your-jira-api-token",
"JIRA_HOST": "your-jira-host.atlassian.net"
}
}
}
}🧰 利用可能なツール
JIRAツール
道具 | 説明 | パラメータ | 返品 |
| 自分に割り当てられたすべての問題を取得します | なし | Markdown形式の問題リスト |
| 特定の問題に関する詳細情報を取得します |
| Markdown形式の問題の詳細 |
| JIRA の問題からローカルタスクを作成します |
| Markdown形式のタスク |
システム時間ツール
道具 | 説明 | パラメータ | 返品 |
| 現在のシステム時刻を取得します |
| フォーマットされた日付/時刻文字列 |
📁 プロジェクト構造
src/
├── features/ # MCP features (JIRA, system time)
├── server/ # MCP server implementation
├── shared/ # Shared utilities
└── index.ts # Main entry pointNPMスクリプト
指示 | 説明 |
| プロジェクトを構築する |
| パッケージをビルドしてnpmレジストリに公開する |
| デバッグのためにMCPインスペクタで実行する |
| 検査官が使用するポートを解放する |
| テストを実行する |
📘 リソース
📄 ライセンス
MIT © スタニスラフ・ステパネンコ
Maintenance
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceModel Context Protocol (MCP) server for Atlassian Cloud products (Confluence and Jira). This integration is designed specifically for Atlassian Cloud instances and does not support Atlassian Server or Data Center deployments.5,796MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables seamless integration between Cursor IDE and JIRA, allowing users to retrieve issues, execute JQL searches, and log work through natural language interactions.
- AlicenseBqualityCmaintenanceA Model Context Protocol server that provides integration with Jira, allowing Large Language Models to interact with Jira projects, boards, sprints, and issues through natural language.5223MIT
- FlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server that provides tools for interacting with Jira. Enables Cursor and other MCP clients to fetch tickets, manage linked tickets, and update ticket status.3
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Figma MCP server brings Figma design context directly into your AI workflow.
A MCP server built for developers enabling Git based project management with project and personal…
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/Dsazz/mcp-jira'
If you have feedback or need assistance with the MCP directory API, please join our Discord server