MCP Atlassian
MCPアトラシアン
Atlassian製品(ConfluenceおよびJira)用のモデルコンテキストプロトコル(MCP)サーバー。この統合は、ConfluenceとJira Cloud、およびServer/Data Centerの両方のデプロイメントをサポートします。
使用例
AI アシスタントに次のことを依頼します。
📝 Jira の自動更新- 「会議メモから Jira を更新」
🔍 AI を活用した Confluence 検索- 「Confluence で OKR ガイドを見つけて要約する」
🐛 スマートな Jira 課題フィルタリング- 「先週の PROJ プロジェクトの緊急バグを表示」
📄 コンテンツ作成と管理- 「XYZ 機能の技術設計ドキュメントを作成する」
機能デモ
https://github.com/user-attachments/assets/35303504-14c6-4ae4-913b-7c25ea511c3e
https://github.com/user-attachments/assets/7fe9c488-ad0c-4876-9b54-120b666bb785
互換性
製品 | 展開タイプ | サポートステータス |
合流 | 雲 | ✅ 完全にサポートされています |
合流 | サーバー/データセンター | ✅ サポートされています(バージョン 6.0 以降) |
ジラ | 雲 | ✅ 完全にサポートされています |
ジラ | サーバー/データセンター | ✅ サポートされています(バージョン 8.14 以降) |
Related MCP server: MCP Atlassian
クイックスタートガイド
🔐 1. 認証の設定
MCP Atlassian は、次の 3 つの認証方法をサポートしています。
A. APIトークン認証(クラウド)
https://id.atlassian.com/manage-profile/security/api-tokensにアクセスしてください。
「APIトークンの作成」をクリックし、名前を付けます
トークンをすぐにコピーする
B. 個人アクセストークン(サーバー/データセンター)
プロフィール(アバター)→プロフィール→個人アクセストークンに移動します
**「トークンの作成」**をクリックし、名前を付けて有効期限を設定します
トークンをすぐにコピーする
C. OAuth 2.0 認証(クラウド)
「OAuth 2.0(3LO)統合」アプリを作成する
Jira/Confluence の権限(スコープ)を設定する
コールバック URLを設定する (例:
http://localhost:8080/callback)セットアップウィザードを実行します:
docker run --rm -i \ -p 8080:8080 \ -v "${HOME}/.mcp-atlassian:/home/app/.mcp-atlassian" \ ghcr.io/sooperset/mcp-atlassian:latest --oauth-setup -vClient ID、Secret、URI、Scopeのプロンプトに従います。ブラウザの認証を完了する
取得した資格情報を
.envまたは IDE 構成に追加します。ATLASSIAN_OAUTH_CLOUD_ID(ウィザードから)ATLASSIAN_OAUTH_CLIENT_IDATLASSIAN_OAUTH_CLIENT_SECRETATLASSIAN_OAUTH_REDIRECT_URIATLASSIAN_OAUTH_SCOPE
[!IMPORTANT] 永続認証のスコープに
offline_accessを含めます (例:read:jira-work write:jira-work offline_access)
📦 2. インストール
MCP AtlassianはDockerイメージとして配布されています。特にIDEとの統合には、サーバーの実行にDockerイメージの使用が推奨されます。Dockerがインストールされていることを確認してください。
# Pull Pre-built Image
docker pull ghcr.io/sooperset/mcp-atlassian:latest🛠️ IDE 統合
MCP Atlassian は、IDE 統合を通じて AI アシスタントと併用できるように設計されています。
[!TIP] Claude Desktop の場合: 構成ファイルを直接探して編集します。
Windows :
%APPDATA%\Claude\claude_desktop_config.jsonmacOS :
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux :
~/.config/Claude/claude_desktop_config.jsonカーソルの場合:設定を開く→MCP→+新しいグローバルMCPサーバーを追加
⚙️ 設定方法
Docker コンテナを構成するには、主に 2 つの方法があります。
変数を直接渡す(以下の例を参照)
--env-fileフラグを使用した環境ファイルの使用(折りたたみ可能なセクションに表示)
[!NOTE] 一般的な環境変数は次のとおりです。
CONFLUENCE_SPACES_FILTER: スペースキーでフィルタリングします (例: "DEV、TEAM、DOC")
JIRA_PROJECTS_FILTER: プロジェクトキーでフィルタリングします(例: "PROJ、DEV、SUPPORT")
READ_ONLY_MODE: 書き込み操作を無効にするには「true」に設定します
MCP_VERBOSE: より詳細なログを記録するには「true」に設定します
ENABLED_TOOLS: 有効にするツール名のカンマ区切りリスト (例: "confluence_search,jira_get_issue")利用可能なすべてのオプションについては、 .env.exampleファイルを参照してください。
📝 設定例
方法 1 (変数を直接渡す):
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_USERNAME",
"-e", "CONFLUENCE_API_TOKEN",
"-e", "JIRA_URL",
"-e", "JIRA_USERNAME",
"-e", "JIRA_API_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "your.email@company.com",
"CONFLUENCE_API_TOKEN": "your_confluence_api_token",
"JIRA_URL": "https://your-company.atlassian.net",
"JIRA_USERNAME": "your.email@company.com",
"JIRA_API_TOKEN": "your_jira_api_token"
}
}
}
}{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env-file",
"/path/to/your/mcp-atlassian.env",
"ghcr.io/sooperset/mcp-atlassian:latest"
]
}
}
}サーバー/データ センターの展開では、直接変数を渡します。
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_PERSONAL_TOKEN",
"-e", "CONFLUENCE_SSL_VERIFY",
"-e", "JIRA_URL",
"-e", "JIRA_PERSONAL_TOKEN",
"-e", "JIRA_SSL_VERIFY",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://confluence.your-company.com",
"CONFLUENCE_PERSONAL_TOKEN": "your_confluence_pat",
"CONFLUENCE_SSL_VERIFY": "false",
"JIRA_URL": "https://jira.your-company.com",
"JIRA_PERSONAL_TOKEN": "your_jira_pat",
"JIRA_SSL_VERIFY": "false"
}
}
}
}[!NOTE] 自己署名証明書がある場合にのみ、
CONFLUENCE_SSL_VERIFYとJIRA_SSL_VERIFY"false" に設定してください。
この例では、Atlassian Cloud で OAuth 2.0 を使用する際に、IDE(Cursor や Claude Desktop など)でmcp-atlassianを設定する方法を示します。まず、 OAuth セットアップウィザードを完了していることを確認してください。
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "<path_to_your_home>/.mcp-atlassian:/home/app/.mcp-atlassian",
"-e", "JIRA_URL",
"-e", "CONFLUENCE_URL",
"-e", "ATLASSIAN_OAUTH_CLIENT_ID",
"-e", "ATLASSIAN_OAUTH_CLIENT_SECRET",
"-e", "ATLASSIAN_OAUTH_REDIRECT_URI",
"-e", "ATLASSIAN_OAUTH_SCOPE",
"-e", "ATLASSIAN_OAUTH_CLOUD_ID",
"ghcr.io/sooperset/mcp-atlassian:latest",
],
"env": {
"JIRA_URL": "https://your-company.atlassian.net",
"CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
"ATLASSIAN_OAUTH_CLIENT_ID": "YOUR_OAUTH_APP_CLIENT_ID",
"ATLASSIAN_OAUTH_CLIENT_SECRET": "YOUR_OAUTH_APP_CLIENT_SECRET",
"ATLASSIAN_OAUTH_REDIRECT_URI": "http://localhost:8080/callback",
"ATLASSIAN_OAUTH_SCOPE": "read:jira-work write:jira-work read:confluence-content.all write:confluence-content offline_access",
"ATLASSIAN_OAUTH_CLOUD_ID": "YOUR_CLOUD_ID_FROM_SETUP_WIZARD"
}
}
}
}[!注記]
ATLASSIAN_OAUTH_CLOUD_ID``--oauth-setupウィザードの出力から取得されます。その他の
ATLASSIAN_OAUTH_*変数は、Atlassian Developer Console で OAuth アプリ用に構成した変数です (セットアップ ウィザードへの入力として使用されます)。クラウド インスタンスの
JIRA_URLとCONFLUENCE_URL引き続き必要です。
MCP Atlassianは、標準のHTTP/HTTPS/SOCKSプロキシを介したAPIリクエストのルーティングをサポートしています。環境変数を使用して設定します。
標準の
HTTP_PROXY、HTTPS_PROXY、NO_PROXY、SOCKS_PROXYをサポートします。サービス固有のオーバーライドが利用可能です (例:
JIRA_HTTPS_PROXY、CONFLUENCE_NO_PROXY)。サービス固有の変数は、そのサービスのグローバル変数をオーバーライドします。
関連するプロキシ変数を、MCP 構成のargs ( -eを使用) およびenvセクションに追加します。
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "... existing Confluence/Jira vars",
"-e", "HTTP_PROXY",
"-e", "HTTPS_PROXY",
"-e", "NO_PROXY",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"... existing Confluence/Jira vars": "...",
"HTTP_PROXY": "http://proxy.internal:8080",
"HTTPS_PROXY": "http://proxy.internal:8080",
"NO_PROXY": "localhost,.your-company.com"
}
}
}
}プロキシURL内の認証情報はログではマスクされます。NO_PROXY NO_PROXY設定すると、一致するホストへのリクエストではこれが尊重されます。
Confluence Cloud のみ:
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_USERNAME",
"-e", "CONFLUENCE_API_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "your.email@company.com",
"CONFLUENCE_API_TOKEN": "your_api_token"
}
}
}
}Confluence Server/DC の場合は以下を使用します。
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "CONFLUENCE_URL",
"-e", "CONFLUENCE_PERSONAL_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"CONFLUENCE_URL": "https://confluence.your-company.com",
"CONFLUENCE_PERSONAL_TOKEN": "your_personal_token"
}
}
}
}Jira Cloud のみ:
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "JIRA_URL",
"-e", "JIRA_USERNAME",
"-e", "JIRA_API_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"JIRA_URL": "https://your-company.atlassian.net",
"JIRA_USERNAME": "your.email@company.com",
"JIRA_API_TOKEN": "your_api_token"
}
}
}
}Jira Server/DC の場合は以下を使用します。
{
"mcpServers": {
"mcp-atlassian": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "JIRA_URL",
"-e", "JIRA_PERSONAL_TOKEN",
"ghcr.io/sooperset/mcp-atlassian:latest"
],
"env": {
"JIRA_URL": "https://jira.your-company.com",
"JIRA_PERSONAL_TOKEN": "your_personal_token"
}
}
}
}👥 HTTP トランスポート構成
stdio使用する代わりに、次のいずれかを使用してサーバーを永続的な HTTP サービスとして実行できます。
/sseエンドポイントでのsse(サーバー送信イベント)トランスポート/mcpエンドポイントでのstreamable-httpトランスポート
どちらのトランスポート タイプも、シングル ユーザー認証とマルチ ユーザー認証をサポートしています。
認証オプション:
シングルユーザー: 環境変数で設定されたサーバーレベルの認証を使用する
マルチユーザー: 各ユーザーが独自の認証を提供します。
クラウド: OAuth 2.0 ベアラートークン
サーバー/データセンター: 個人アクセストークン (PAT)
選択したトランスポートを使用してサーバーを起動します。
# For SSE transport docker run --rm -p 9000:9000 \ --env-file /path/to/your/.env \ ghcr.io/sooperset/mcp-atlassian:latest \ --transport sse --port 9000 -vv # OR for streamable-http transport docker run --rm -p 9000:9000 \ --env-file /path/to/your/.env \ ghcr.io/sooperset/mcp-atlassian:latest \ --transport streamable-http --port 9000 -vvIDE を構成する (シングルユーザーの例):
SSEトランスポートの例:
{ "mcpServers": { "mcp-atlassian-http": { "url": "http://localhost:9000/sse" } } }ストリーミング可能な HTTP トランスポートの例:
{ "mcpServers": { "mcp-atlassian-service": { "url": "http://localhost:9000/mcp" } } }
以下は、ストリーミング可能な HTTP トランスポートを使用してマルチユーザー認証を設定する完全な例です。
まず、OAuth セットアップ ウィザードを実行して、サーバーの OAuth 資格情報を構成します。
docker run --rm -i \ -p 8080:8080 \ -v "${HOME}/.mcp-atlassian:/home/app/.mcp-atlassian" \ ghcr.io/sooperset/mcp-atlassian:latest --oauth-setup -vストリーミング可能な HTTP トランスポートを使用してサーバーを起動します。
docker run --rm -p 9000:9000 \ --env-file /path/to/your/.env \ ghcr.io/sooperset/mcp-atlassian:latest \ --transport streamable-http --port 9000 -vvIDE の MCP 設定を構成します。
Atlassian のデプロイメントに適した認証方法を選択します。
**Cloud (OAuth 2.0):**組織が Atlassian Cloud を使用しており、ユーザーごとに OAuth アクセス トークンがある場合はこれを使用します。
Server/Data Center (PAT): Atlassian Server または Data Center を使用しており、各ユーザーが個人アクセス トークン (PAT) を持っている場合は、これを使用します。
クラウド(OAuth 2.0)の例:
{
"mcpServers": {
"mcp-atlassian-service": {
"url": "http://localhost:9000/mcp",
"headers": {
"Authorization": "Bearer <USER_OAUTH_ACCESS_TOKEN>"
}
}
}
}サーバー/データセンター (PAT) の例:
{
"mcpServers": {
"mcp-atlassian-service": {
"url": "http://localhost:9000/mcp",
"headers": {
"Authorization": "Token <USER_PERSONAL_ACCESS_TOKEN>"
}
}
}
}.env内の必須環境変数:JIRA_URL=https://your-company.atlassian.net CONFLUENCE_URL=https://your-company.atlassian.net/wiki ATLASSIAN_OAUTH_CLIENT_ID=your_oauth_app_client_id ATLASSIAN_OAUTH_CLIENT_SECRET=your_oauth_app_client_secret ATLASSIAN_OAUTH_REDIRECT_URI=http://localhost:8080/callback ATLASSIAN_OAUTH_SCOPE=read:jira-work write:jira-work read:confluence-content.all write:confluence-content offline_access ATLASSIAN_OAUTH_CLOUD_ID=your_cloud_id_from_setup_wizard
[!注記]
サーバーには独自のフォールバック認証が設定されている必要があります(例:APIトークン、PAT、または--oauth-setupを使用した独自のOAuth設定の環境変数など)。これは、リクエストにユーザー固有の認証が含まれていない場合に使用されます。
OAuth : 各ユーザーには、Atlassian OAuth アプリからの独自の OAuth アクセス トークンが必要です。
PAT : 各ユーザーは独自の個人アクセス トークンを提供します。
サーバーは、提供された場合はAPI呼び出しにユーザーのトークンを使用し、提供されない場合はサーバー認証にフォールバックします。
ユーザートークンは、必要な操作に対して適切なスコープを持つ必要があります。
ツール
主要ツール
Jiraツール
jira_get_issue: 特定の問題の詳細を取得するjira_search: JQL を使用して課題を検索するjira_create_issue: 新しい課題を作成するjira_update_issue: 既存の課題を更新するjira_transition_issue: 課題を新しいステータスに移行するjira_add_comment: 課題にコメントを追加する
Confluenceツール
confluence_search: CQL を使用して Confluence コンテンツを検索するconfluence_get_page: 特定のページの内容を取得するconfluence_create_page: 新しいページを作成するconfluence_update_page: 既存のページを更新する
手術 | Jiraツール | Confluenceツール |
読む |
|
|
|
| |
|
| |
|
| |
|
| |
| ||
| ||
| ||
| ||
| ||
| ||
| ||
| ||
書く |
|
|
|
| |
|
| |
|
| |
|
| |
| ||
| ||
| ||
| ||
| ||
| ||
|
*ツールはJira Cloudでのみ利用可能です
ツールのフィルタリングとアクセス制御
サーバーはツール アクセスを制御する 2 つの方法を提供します。
ツールのフィルタリング:
--enabled-toolsフラグまたはENABLED_TOOLS環境変数を使用して、使用可能にするツールを指定します。# Via environment variable ENABLED_TOOLS="confluence_search,jira_get_issue,jira_search" # Or via command line flag docker run ... --enabled-tools "confluence_search,jira_get_issue,jira_search" ...読み取り/書き込み制御:ツールは読み取り操作と書き込み操作に分類されます。READ_ONLY_MODE
READ_ONLY_MODE有効な場合、ENABLED_TOOLS設定に関係なく、読み取り操作のみが利用可能です。
トラブルシューティングとデバッグ
よくある問題
認証失敗:
クラウドの場合: APIトークンを確認してください(アカウントのパスワードではありません)
サーバー/データセンターの場合: 個人アクセストークンが有効であり、期限切れでないことを確認してください
古い Confluence サーバーの場合: 一部の古いバージョンでは、
CONFLUENCE_USERNAMEとCONFLUENCE_API_TOKEN(token はパスワード) を使用した基本認証が必要です。
SSL 証明書の問題: Server/Data Center を使用していて SSL エラーが発生した場合は、
CONFLUENCE_SSL_VERIFY=falseまたはJIRA_SSL_VERIFY=falseを設定してください。権限エラー: Atlassian アカウントにスペース/プロジェクトにアクセスするための十分な権限があることを確認してください
デバッグツール
# Using MCP Inspector for testing
npx @modelcontextprotocol/inspector uvx mcp-atlassian ...
# For local development version
npx @modelcontextprotocol/inspector uv --directory /path/to/your/mcp-atlassian run mcp-atlassian ...
# View logs
# macOS
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
# Windows
type %APPDATA%\Claude\logs\mcp*.log | more安全
APIトークンを共有しないでください
.env ファイルを安全かつプライベートに保つ
ベストプラクティスについてはSECURITY.mdをご覧ください
貢献
MCP Atlassianへの貢献を歓迎します!貢献をご希望の場合は、以下をご記入ください。
詳細な開発セットアップ手順については、 CONTRIBUTING.mdガイドをご覧ください。
変更を加えてプルリクエストを送信します。
コードの品質を保つために事前コミットフックを使用し、リリースにはセマンティックバージョニングに従います。
ライセンス
MITライセンス( LICENSEファイル参照)です。これはAtlassianの公式製品ではありません。
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Model Context Protocol server for Studex tools, notifications, and profile integrations
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceModel Context Protocol server that integrates with Atlassian Confluence and Jira, enabling AI assistants to search, create, and update content in these platforms through natural language interactions.1MIT
- -licenseNot gradedqualityNot gradedmaintenanceA Model Context Protocol server that enables interaction with Atlassian products (Confluence and Jira), supporting both Cloud and Server/Data Center deployments for searching, creating, and managing content through natural language.-
- AlicenseBqualityCmaintenanceA Model Context Protocol server that integrates with Atlassian's Jira and Confluence, enabling AI assistants to interact with these tools directly through features like issue management, page creation, and content search.131MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server for Atlassian Jira and Confluence that supports both Cloud and On-Prem/Data Center deployments. It enables AI assistants to search, create, and manage issues and pages using secure authentication methods like PAT and OAuth.5MIT
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/sooperset/mcp-atlassian'
If you have feedback or need assistance with the MCP directory API, please join our Discord server