Loading...

MCP server for Atlassian (Jira, Confluence) enabling AI to search, create, and update issues/pages via API using tokens or PAT for Cloud and Server/Data Center.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
MCP server for Atlassian (Jira, Confluence) enabling AI to search, create, and update issues/pages via API using tokens or PAT for Cloud and Server/Data Center.
This MCP server provides access to both read and write operations in Jira and Confluence. While it uses API tokens for authentication, the risk of unintended modifications or data breaches exists if tokens are mishandled. Exercise caution when granting write access and monitor usage.
Performance depends on the Atlassian API response times and network latency. Consider optimizing JQL/CQL queries for faster results. Rate limiting may be a concern for high-volume operations.
Cost depends on Atlassian API usage. Monitor API call volume to avoid unexpected charges. Consider using caching to reduce the number of API calls.
npx @modelcontextprotocol/inspector{
"mcpServers": {
"mcp-atlassian": {
"command": "uvx",
"args": ["mcp-atlassian"],
"env": {
"JIRA_URL": "https://your-company.atlassian.net",
"JIRA_USERNAME": "your.email@company.com",
"JIRA_API_TOKEN": "your_api_token",
"CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "your.email@company.com",
"CONFLUENCE_API_TOKEN": "your_api_token"
}
}
}
}JIRA_URLCONFLUENCE_URLATLASSIAN_OAUTH_CLIENT_IDATLASSIAN_OAUTH_CLIENT_SECRETATLASSIAN_OAUTH_REDIRECT_URIATLASSIAN_OAUTH_SCOPEATLASSIAN_OAUTH_CLOUD_IDENABLED_TOOLSCONFLUENCE_SSL_VERIFYJIRA_SSL_VERIFYjira_searchSearches Jira issues using JQL queries.
Read-only operation; no data modification.
confluence_searchSearches Confluence pages using CQL queries.
Read-only operation; no data modification.
jira_get_issueRetrieves details of a specific Jira issue.
Read-only operation; no data modification.
confluence_get_pageRetrieves the content of a specific Confluence page.
Read-only operation; no data modification.
jira_create_issueCreates a new Jira issue.
Creates new data; potential for misuse.
confluence_create_pageCreates a new Confluence page.
Creates new data; potential for misuse.
jira_update_issueUpdates an existing Jira issue.
Modifies existing data; potential for data corruption or unauthorized changes.
confluence_update_pageUpdates an existing Confluence page.
Modifies existing data; potential for data corruption or unauthorized changes.
jira_transition_issueChanges the status of a Jira issue.
Modifies issue workflow; potential for incorrect state transitions.
confluence_add_commentAdds a comment to a Confluence page.
Adds new data; potential for inappropriate comments.
jira_get_issue_slaCalculates SLA metrics for a Jira issue.
Read-only operation; no data modification.
confluence_get_page_viewsRetrieves page view statistics for a Confluence page.
Read-only operation; no data modification.
API Key
cloud
This MCP server provides access to both read and write operations in Jira and Confluence. While it uses API tokens for authentication, the risk of unintended modifications or data breaches exists if tokens are mishandled. Exercise caution when granting write access and monitor usage.
The level of autonomy depends on the configured tools and permissions. Exercise caution when granting access to write operations.
Production Tip
Implement robust error handling and monitoring to detect and address issues promptly. Securely manage and rotate API tokens regularly.
API tokens and Personal Access Tokens (PAT) are supported for both Cloud and Server/Data Center deployments.
Use the `JIRA_PERSONAL_TOKEN` environment variable instead of `JIRA_USERNAME` and `JIRA_API_TOKEN`.
Confluence Server/Data Center v6.0+ and Jira Server/Data Center v8.14+ are supported.
Never share API tokens, keep `.env` files secure, and rotate tokens regularly.
Yes, by configuring multiple MCP server instances with different environment variables.
Yes, OAuth 2.0 is supported as an authentication method.
Check the documentation for common issues and debugging tips, and verify your API token and URL settings.