Skip to main content
MCP Atlassian provides Docker images for production deployment. This guide covers Docker Compose setups, health checks, and orchestration patterns.

Quick Start

Docker Compose

Basic Setup

With Health Checks

Multi-Service Setup

Run separate Jira and Confluence services:

Environment File Pattern

Use .env files for sensitive credentials:
Never commit .env files to version control. Add .env to your .gitignore.

Read-Only Mode

For production environments where write operations should be disabled:
This disables all create, update, and delete tools at the server level.

Kubernetes Notes

For Kubernetes deployments:
Use Kubernetes Secrets for credentials. Create with: kubectl create secret generic atlassian-credentials --from-env-file=.env
For high availability, consider running separate deployments for Jira and Confluence services with different ENABLED_TOOLS configurations.