Skip to main content
Glama

Jira MCP Server

by George5562

Jira MCP サーバー

Jiraに自然言語で話しかけることで、プロジェクトの情報を入手したり、変更したりできます。Claude Desktopと連携し、プロジェクト情報をまとめたカスタムREADMEファイルを作成することで、プロジェクトマネージャー(PM)にタスクを委任できます(例えば、チームメンバーとその専門分野がリストアップされている場合、新しい課題を最も関連性の高い担当者に割り当てるなど)。

モデルコンテキストプロトコルを使用して構築されました。

サーバーにより、次のことが可能になります。

  • プロジェクトの作成と構成
  • 問題とサブタスクの管理
  • 問題のリンクと依存関係
  • 自動化された問題ワークフロー

構成

必要な環境変数:

利用可能なツール

1. ユーザー管理

// Get user's account ID by email { email: "user@example.com"; }

2. 問題タイプの管理

// List all available issue types // Returns: id, name, description, subtask status // No parameters required

3. 問題リンクの種類

// List all available issue link types // Returns: id, name, inward/outward descriptions // No parameters required

4. 問題管理

問題の取得
// Get all issues in a project { projectKey: "PROJECT" } // Get issues with JQL filtering { projectKey: "PROJECT", jql: "status = 'In Progress' AND assignee = currentUser()" } // Get issues assigned to user { projectKey: "PROJECT", jql: "assignee = 'user@example.com' ORDER BY created DESC" }
問題の作成
// Create a standard issue { projectKey: "PROJECT", summary: "Issue title", issueType: "Task", // or "Story", "Bug", etc. description: "Detailed description", assignee: "accountId", // from get_user tool labels: ["frontend", "urgent"], components: ["ui", "api"], priority: "High" } // Create a subtask { parent: "PROJECT-123", projectKey: "PROJECT", summary: "Subtask title", issueType: "Subtask", description: "Subtask details", assignee: "accountId" }
更新に関する問題
// Update issue fields { issueKey: "PROJECT-123", summary: "Updated title", description: "New description", assignee: "accountId", status: "In Progress", priority: "High" }
問題の依存関係
// Create issue link { linkType: "Blocks", // from list_link_types inwardIssueKey: "PROJECT-124", // blocked issue outwardIssueKey: "PROJECT-123" // blocking issue }
問題の削除
// Delete single issue { issueKey: "PROJECT-123" } // Delete issue with subtasks { issueKey: "PROJECT-123", deleteSubtasks: true } // Delete multiple issues { issueKeys: ["PROJECT-123", "PROJECT-124"] }

フィールドの書式設定

説明フィールド

説明フィールドは、マークダウン形式の書式設定をサポートしています。

  • 段落間に空白行を入れる
  • 箇条書きには「-」を使用します
  • 番号付きリストには「1. 」を使用します
  • 「:」で終わるヘッダーを使用します(その後に空行が続きます)

例:

Task Overview: This task involves implementing new features: - Feature A implementation - Feature B testing Steps: 1. Design component 2. Implement logic 3. Add tests Acceptance Criteria: - All tests passing - Documentation updated

エラー処理

サーバーは、次の詳細なエラー メッセージを提供します。

  • 無効な問題キー
  • 必須フィールドがありません
  • 権限の問題
  • API レート制限

セットアップ手順

  1. リポジトリをクローンします。
    git clone https://github.com/George5562/Jira-MCP-Server.git cd Jira-MCP-Server
  2. 依存関係をインストールします:
    npm install
  3. 環境変数を設定します。ルート ディレクトリに.envファイルを作成します。
    JIRA_HOST=your-instance.atlassian.net JIRA_EMAIL=your-email@example.com JIRA_API_TOKEN=your-api-token
  4. プロジェクトをビルドします。
    npm run build
  5. サーバーを起動します。
    npm start

Claudeデスクトップの設定

この MCP サーバーを Claude Desktop で使用するには:

  1. Claude Desktop 構成ファイルを見つけます。
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%/Claude/claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  2. Jira MCP サーバーを構成に追加します。
    { "mcp_servers": [ { "name": "jira-server", "command": "npm start", "cwd": "/path/to/jira-server", "env": { "JIRA_HOST": "your-instance.atlassian.net", "JIRA_EMAIL": "your-email@example.com", "JIRA_API_TOKEN": "your-api-token" } } ] }
    /path/to/jira-serverクローンしたリポジトリへの絶対パスに置き換えます。
  3. 変更を適用するには、Claude Desktop を再起動します。

参考文献

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

モデル コンテキスト プロトコルを通じてプロジェクト、問題、タスク、ワークフローを管理するために Jira との自然言語による対話を可能にし、ユーザーが Claude Desktop を通じて PM タスクを委任できるようにします。

  1. 構成
    1. 利用可能なツール
      1. ユーザー管理
      2. 問題タイプの管理
      3. 問題リンクの種類
      4. 問題管理
    2. フィールドの書式設定
      1. 説明フィールド
    3. エラー処理
      1. セットアップ手順
        1. Claudeデスクトップの設定
          1. 参考文献

            Related MCP Servers

            • A
              security
              F
              license
              A
              quality
              A Model Context Protocol server that enables integration with JIRA, allowing users to interact with JIRA tasks and issues through Claude AI assistant.
              Last updated -
              3
              2
              Python
              • Apple
            • A
              security
              A
              license
              A
              quality
              A 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.
              Last updated -
              5
              87
              2
              TypeScript
              MIT License
              • Apple
            • -
              security
              F
              license
              -
              quality
              A Model Context Protocol (MCP) server that enables interaction with JIRA APIs through Claude Desktop, allowing users to search, create, update, and manage JIRA issues using natural language commands.
              Last updated -
              Python
              • Linux
              • Apple
            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that enables AI assistants like Claude to interact with Jira, allowing for project management tasks such as listing projects, searching issues, creating tickets, and managing sprints through natural language queries.
              Last updated -
              15
              1
              TypeScript
              MIT License
              • Linux
              • Apple

            View all related MCP servers

            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/George5562/Jira-MCP-Server'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server