Jira & Confluence MCP Server

Jira & Confluence MCP Server

Enables interaction with Jira and Confluence APIs to search, create, and manage issues, pages, comments, and attachments across both Atlassian platforms.

Category
Visit Server

README

Jira & Confluence MCP Servers

PythonベースのMCP(Model Context Protocol)サーバーで、JiraとConfluenceのAPIと対話できます。

セットアップ

1. 依存関係のインストール

uv sync

2. 環境変数の設定

.env.example.envにコピーして、認証情報を設定します:

cp .env.example .env

以下の情報を設定してください:

  • JIRA_URL / CONFLUENCE_URL: AtlassianインスタンスのURL
  • JIRA_USERNAME / CONFLUENCE_USERNAME: メールアドレス
  • JIRA_API_TOKEN / CONFLUENCE_API_TOKEN: APIトークン(こちらから生成)
  • JIRA_CLOUD / CONFLUENCE_CLOUD: クラウド版の場合はtrue、サーバー版の場合はfalse

使用方法

Jira MCPサーバーの起動

uv run python src/jira_server.py

Confluence MCPサーバーの起動

uv run python src/confluence_server.py

利用可能なツール

Jira MCP

  • jira_search_issues: JQLを使用してイシューを検索
  • jira_get_issue: 特定のイシューの詳細を取得
  • jira_create_issue: 新しいイシューを作成
  • jira_update_issue: 既存のイシューを更新
  • jira_add_comment: イシューにコメントを追加
  • jira_transition_issue: イシューのステータスを変更
  • jira_get_projects: プロジェクト一覧を取得

Confluence MCP

  • confluence_search_content: CQLを使用してコンテンツを検索
  • confluence_get_page: ページの詳細を取得
  • confluence_create_page: 新しいページを作成
  • confluence_update_page: 既存のページを更新
  • confluence_delete_page: ページを削除
  • confluence_get_spaces: スペース一覧を取得
  • confluence_get_page_children: 子ページを取得
  • confluence_add_attachment: ページに添付ファイルを追加

Claude Desktopでの設定

Claude Desktopの設定ファイル(~/Library/Application Support/Claude/claude_desktop_config.json)に以下を追加:

{
  "mcpServers": {
    "jira": {
      "command": "/path/to/jira-confluence-mcp/run_jira.sh",
      "args": [],
      "env": {
        "JIRA_URL": "https://your-domain.atlassian.net",
        "JIRA_USERNAME": "your-email@example.com",
        "JIRA_API_TOKEN": "your-api-token",
        "JIRA_CLOUD": "true"
      }
    },
    "confluence": {
      "command": "/path/to/jira-confluence-mcp/run_confluence.sh",
      "args": [],
      "env": {
        "CONFLUENCE_URL": "https://your-domain.atlassian.net",
        "CONFLUENCE_USERNAME": "your-email@example.com",
        "CONFLUENCE_API_TOKEN": "your-api-token",
        "CONFLUENCE_CLOUD": "true"
      }
    }
  }
}

注意:

  • /path/to/jira-confluence-mcp/の部分は実際のプロジェクトパスに置き換えてください
  • APIトークンはAtlassianアカウント設定から生成できます
  • run_jira.shrun_confluence.shは、プロジェクトルートにあるシェルスクリプトです

使用例

Jira

# イシューの検索
await jira_search_issues({"jql": "project = PROJ AND status = 'In Progress'", "max_results": 10})

# イシューの作成
await jira_create_issue({
    "project_key": "PROJ",
    "summary": "新しいタスク",
    "description": "タスクの説明",
    "issue_type": "Task",
    "priority": "Medium"
})

# イシューのステータス変更
await jira_transition_issue({"issue_key": "PROJ-123", "status": "Done"})

Confluence

# ページの検索
await confluence_search_content({"cql": "space = DEV AND title ~ 'API'"})

# ページの作成
await confluence_create_page({
    "space_key": "DEV",
    "title": "新しいドキュメント",
    "content": "<p>ページの内容</p>"
})

# ページの更新
await confluence_update_page({
    "page_id": "123456",
    "content": "<p>更新された内容</p>",
    "version_comment": "APIドキュメントを更新"
})

ライセンス

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

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.

Official
Featured
Python
graphlit-mcp-server

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.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured