MCP Atlassian
Server implementation for integrating Atlassian Cloud products with contextual AI systems
🌩️ Cloud
Overview
MCP-Atlassian
Description:
Server implementation for integrating Atlassian Cloud products with contextual AI systems
Category: Enterprise Integration
Overview:
MCP-Atlassian provides seamless integration with Atlassian Cloud products (Confluence and Jira), enabling AI systems to access and process organizational knowledge. Key capabilities include:
- Confluence space/page search and retrieval
- Page comment access
- Jira issue tracking and project metadata
- Advanced search using CQL (Confluence) and JQL (Jira)
API Resources:
confluence://{space_key}
- Access spaces and pagesconfluence://{space_key}/pages/{title}
- Access specific pagesjira://{project_key}
- Access project and issuesjira://{project_key}/issues/{issue_key}
- Access specific issues
Tools Include:
- Confluence search with CQL
- Page content retrieval
- Comment access
- Jira issue management
- Project-wide issue queries
Setup:
- Generate API tokens at https://id.atlassian.com/manage-profile/security/api-tokens
- Configure your environment with the following JSON:
{
"mcpServers": {
"mcp-atlassian": {
"command": "uvx",
"args": ["mcp-atlassian"],
"env": {
"CONFLUENCE_URL": "https://your-domain.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "your.email@domain.com",
"CONFLUENCE_API_TOKEN": "your_api_token",
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_USERNAME": "your.email@domain.com",
"JIRA_API_TOKEN": "your_api_token"
}
}
}
}
Note: This integration supports Atlassian Cloud instances only, not Server or Data Center deployments.