Jira & Confluence MCP Servers
About
MCP servers for interacting with Jira and Confluence APIs.
Details
- Author
- katsuhirohonda
- Categories
- Productivity, Project Management, Other, Communication
Jump to
Setup
Install Jira & Confluence MCP Servers in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/katsuhirohonda/jira-confluence-mcp
Follow the installation instructions in the repository README, then restart your MCP client.
MCP servers for interacting with Jira and Confluence APIs.
PythonベースのMCP(Model Context Protocol)サーバーで、JiraとConfluenceのAPIと対話できます。
- JIRA_URL/CONFLUENCE_URL: AtlassianインスタンスのURL
- JIRA_USERNAME/CONFLUENCE_USERNAME: メールアドレス
- JIRA_API_TOKEN/CONFLUENCE_API_TOKEN: APIトークン(こちらから生成)
- JIRA_CLOUD/CONFLUENCE_CLOUD: クラウド版の場合はtrue、サーバー版の場合はfalse
- jira_search_issues: JQLを使用してイシューを検索
- jira_get_issue: 特定のイシューの詳細を取得
- jira_create_issue: 新しいイシューを作成
- jira_update_issue: 既存のイシューを更新
- jira_add_comment: イシューにコメントを追加
- jira_transition_issue: イシューのステータスを変更
- jira_get_projects: プロジェクト一覧を取得
- 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の設定ファイル(~/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.shとrun_confluence.shは、プロジェクトルートにあるシェルスクリプトです
# イシューの検索 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"})
# ページの検索 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ドキュメントを更新" })
Integrate with Atlassian Cloud to access Jira tickets, issues, projects, and Confluence pages.
Integrate Atlassian products like Confluence and Jira with the Model Context Protocol.
Atlassian Rovo MCP Server (Streamin HTTP)
Official Atlassian MCP server for connecting AI agents to Jira, Confluence, Opsgenie, and other Atlassian products.
Interact with Atlassian tools like Confluence and Jira.
Interact with Atlassian Confluence Cloud spaces, pages, and content in real-time.
An open-source Model Context Protocol (MCP) server for Atlassian Confluence that lets AI assistants like Claude and Windsurf read, create, search, and manage Confluence wiki pages. Works with Confluence Cloud, on-premise Server, and Data Center deployments — connect your AI coding agent to your team's knowledge base in seconds via npx.
An MCP client for integrating with Atlassian tools like Jira and Confluence using OAuth authentication.
Provides secure access to Atlassian Confluence content and spaces using its REST API.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





