Atlassian MCP Server
A read-only server for accessing Atlassian products like Confluence and Jira.
Atlassian MCP Server
A read-only Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira).
Installation
pip install -e .
Configuration
Set your Atlassian credentials as environment variables:
export ATLASSIAN_DOMAIN=your-company.atlassian.net
export ATLASSIAN_EMAIL=your-email@company.com
# Separate tokens for each service (recommended)
export ATLASSIAN_CONFLUENCE_TOKEN=your-confluence-token
export ATLASSIAN_JIRA_TOKEN=your-jira-token
# OR for backward compatibility, single token (if it has access to both)
export ATLASSIAN_API_TOKEN=your-api-token
Creating API Tokens
- Go to: https://id.atlassian.com/manage-profile/security/api-tokens
- Click "Create API token"
For Confluence:
- When creating a Confluence token, select these scopes:
read:content:confluence- View pages, blog posts, comments, attachmentsread:content-details:confluence- View content metadata and properties
For Jira:
- When creating a Jira token, you'll see different scope options. Look for:
- Scopes that allow reading issues and projects
- Search capabilities for JQL queries
- Basic browse permissions
Note: The exact scope names may vary in the Atlassian interface. Choose the minimal read-only scopes that allow viewing issues, projects, and searching. If you're unsure, you can start with broader read permissions and restrict them later.
Usage
Start the MCP server:
atlassian-mcp
Available Tools
Confluence
- confluence_get_page - Get a page by ID
- confluence_get_page_by_url - Get a page by URL
- confluence_search_pages - Search for pages
- confluence_list_spaces - List all spaces
Jira
- jira_get_issue - Get an issue by key (e.g., PROJ-123)
- jira_get_issue_by_url - Get an issue by URL
- jira_search_issues - Search issues using JQL
- jira_list_projects - List all projects
Supported URLs
Confluence Pages
https://domain.atlassian.net/wiki/spaces/SPACE/pages/123456/Page+Titlehttps://domain.atlassian.net/wiki/display/SPACE/Page+Title?pageId=123456https://domain.atlassian.net/wiki/pages/viewpage.action?pageId=123456
Jira Issues
https://domain.atlassian.net/browse/PROJ-123https://domain.atlassian.net/jira/software/projects/PROJ/boards/1?selectedIssue=PROJ-123
MCP Client Configuration
{
"mcpServers": {
"atlassian": {
"command": "python",
"args": ["-m", "atlassian_mcp.server"],
"cwd": "/path/to/your/atlassian_mcp",
"env": {
"ATLASSIAN_DOMAIN": "your-company.atlassian.net",
"ATLASSIAN_EMAIL": "your-email@company.com",
"ATLASSIAN_CONFLUENCE_TOKEN": "your-confluence-token",
"ATLASSIAN_JIRA_TOKEN": "your-jira-token"
}
}
}
}
API Endpoints Used
This server uses the following Atlassian REST API endpoints:
Confluence REST API:
GET /wiki/rest/api/content/{id}- Get page contentGET /wiki/rest/api/content/search- Search pages using CQLGET /wiki/rest/api/space- List spaces
Jira REST API v3:
GET /rest/api/3/issue/{issueIdOrKey}- Get issue detailsGET /rest/api/3/search- Search issues using JQLGET /rest/api/3/project- List projects
All endpoints are read-only and require basic authentication with your email and API token.
Related Servers
JIRA
Interact with JIRA to search for issues using JQL and retrieve detailed issue information.
Homelab MCP Server
Manage and monitor homelab systems via SSH.
PaperlessMCP
MCP server for Paperless-ngx document management. 43 tools for AI-powered document organization - full CRUD on documents, tags, correspondents, document types, storage paths, and custom fields.
Rememberizer MCP Server for Common Knowledge
Access personal or team knowledge from internal repositories like documents and Slack discussions.
MCP-PDF2MD
A high-performance service to convert PDFs from local files or URLs into Markdown using the Mistral AI OCR API.
AppleScript BB MCP Server
Enables LLM clients to interact with macOS applications through AppleScript. Built using the @beyondbetter/bb-mcp-server library, this server provides safe, controlled execution of predefined scripts with optional support for arbitrary script execution.
Linear
Query and search for issues in your Linear workspace.
SPAIK AI ROI
Predict and track AI ROI using Monte Carlo simulations, real-time industry benchmarks, and ML-powered insights.
Gmail MCP
Manage and summarize notes within Gmail using the Gmail API.
Basecamp by CData
A read-only MCP server by CData that allows LLMs to query live Basecamp data.