Atlassian MCP Server

Atlassian MCP Server

A read-only MCP server that enables querying and searching Atlassian Confluence pages and Jira issues through their REST APIs. Supports retrieving content by ID or URL, searching using CQL/JQL, and listing spaces and projects.

Category
Visit Server

README

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

  1. Go to: https://id.atlassian.com/manage-profile/security/api-tokens
  2. Click "Create API token"

For Confluence:

  • When creating a Confluence token, select these scopes:
    • read:content:confluence - View pages, blog posts, comments, attachments
    • read: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+Title
  • https://domain.atlassian.net/wiki/display/SPACE/Page+Title?pageId=123456
  • https://domain.atlassian.net/wiki/pages/viewpage.action?pageId=123456

Jira Issues

  • https://domain.atlassian.net/browse/PROJ-123
  • https://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 content
  • GET /wiki/rest/api/content/search - Search pages using CQL
  • GET /wiki/rest/api/space - List spaces

Jira REST API v3:

  • GET /rest/api/3/issue/{issueIdOrKey} - Get issue details
  • GET /rest/api/3/search - Search issues using JQL
  • GET /rest/api/3/project - List projects

All endpoints are read-only and require basic authentication with your email and API token.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured