Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Atlassian Dc Mcp

    MCP servers for the Atlassian products (Bitbucket, Confluence, JIRA) of the Data Center version

    34 stars
    TypeScript
    Updated Oct 27, 2025

    Table of Contents

    • Claude Desktop Configuration
    • Claude Code CLI Configuration
    • Generating API Tokens
    • Jira Data Center
    • Confluence Data Center
    • Bitbucket Data Center
    • Overview
    • Prerequisites
    • Installation
    • Development
    • Installing Dependencies
    • Building the Project
    • Running in Development Mode
    • Configuration
    • License

    Table of Contents

    • Claude Desktop Configuration
    • Claude Code CLI Configuration
    • Generating API Tokens
    • Jira Data Center
    • Confluence Data Center
    • Bitbucket Data Center
    • Overview
    • Prerequisites
    • Installation
    • Development
    • Installing Dependencies
    • Building the Project
    • Running in Development Mode
    • Configuration
    • License

    Documentation

    MSeeP.ai Security Assessment Badge

    Verified on MseeP

    Atlassian Data Center MCP

    This project provides a Model Context Protocol (MCP) integration for Atlassian Data Center products, including Jira, Confluence, and Bitbucket.

    Claude Desktop Configuration

    Official Anthropic quick start guide

    To use these MCP connectors with Claude Desktop, add the following to your Claude Desktop configuration.

    Set *_HOST variables only to domain + port without protocol (e.g., your-instance.atlassian.net). The https protocol is assumed.

    Alternatively, you can use *_API_BASE_PATH variables instead of *_HOST to specify the complete API base URL including protocol (e.g., https://your-instance.atlassian.net/rest). Note that the /api/latest/ part is static and added automatically in the code, so you don't need to include it in the *_API_BASE_PATH values.

    You can leave only the services you need in the configuration.

    macOS:

    code
    ~/Library/Application Support/Claude/claude_desktop_config.json

    Windows:

    code
    %APPDATA%\Claude\claude_desktop_config.json
    json
    {
      "mcpServers": {
        "atlassian-jira-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/jira"],
          "env": {
            "JIRA_HOST": "your-jira-host",
            "JIRA_API_TOKEN": "your-token"
          }
        },
        "atlassian-confluence-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/confluence"],
          "env": {
            "CONFLUENCE_HOST": "your-confluence-host",
            "CONFLUENCE_API_TOKEN": "your-token"
          }
        },
        "atlassian-bitbucket-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/bitbucket"],
          "env": {
            "BITBUCKET_HOST": "your-bitbucket-host",
            "BITBUCKET_API_TOKEN": "your-token"
          }
        }
      }
    }

    You can also use the alternative API base path configuration:

    json
    {
      "mcpServers": {
        "atlassian-jira-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/jira"],
          "env": {
            "JIRA_API_BASE_PATH": "https://your-jira-host/rest",
            "JIRA_API_TOKEN": "your-token"
          }
        },
        "atlassian-confluence-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/confluence"],
          "env": {
            "CONFLUENCE_API_BASE_PATH": "https://your-confluence-host/rest",
            "CONFLUENCE_API_TOKEN": "your-token"
          }
        },
        "atlassian-bitbucket-dc": {
          "command": "npx",
          "args": ["-y", "@atlassian-dc-mcp/bitbucket"],
          "env": {
            "BITBUCKET_API_BASE_PATH": "https://your-bitbucket-host/rest",
            "BITBUCKET_API_TOKEN": "your-token"
          }
        }
      }
    }

    Claude Code CLI Configuration

    To use these MCP connectors with Claude Code, add MCP servers using the claude mcp add command.

    You can add servers at the project scope (stored in .mcp.json) or user scope (-s user). Adjust the scope and included services to your needs.

    bash
    # Jira
    claude mcp add atlassian-jira-dc \
      -e JIRA_HOST=your-jira-host \
      -e JIRA_API_TOKEN=your-token \
      -- npx -y @atlassian-dc-mcp/jira
    
    # Confluence
    claude mcp add atlassian-confluence-dc \
      -e CONFLUENCE_HOST=your-confluence-host \
      -e CONFLUENCE_API_TOKEN=your-token \
      -- npx -y @atlassian-dc-mcp/confluence
    
    # Bitbucket
    claude mcp add atlassian-bitbucket-dc \
      -e BITBUCKET_HOST=your-bitbucket-host \
      -e BITBUCKET_API_TOKEN=your-token \
      -- npx -y @atlassian-dc-mcp/bitbucket

    You can also use *_API_BASE_PATH instead of *_HOST (same as the Claude Desktop examples above):

    bash
    claude mcp add atlassian-jira-dc \
      -e JIRA_API_BASE_PATH=https://your-jira-host/rest \
      -e JIRA_API_TOKEN=your-token \
      -- npx -y @atlassian-dc-mcp/jira

    To add servers at user scope (available across all projects):

    bash
    claude mcp add -s user atlassian-jira-dc \
      -e JIRA_HOST=your-jira-host \
      -e JIRA_API_TOKEN=your-token \
      -- npx -y @atlassian-dc-mcp/jira

    Generating API Tokens

    For Data Center installations, you'll need to generate Personal Access Tokens (PAT) for each service:

    Jira Data Center

    1. Log in to your Jira instance

    2. Go to Profile > Personal Access Tokens

    3. Click "Create token"

    4. Give it a meaningful name and set appropriate permissions

    5. Copy the generated token immediately (it won't be shown again)

    Confluence Data Center

    1. Log in to your Confluence instance

    2. Go to Settings > Personal Access Tokens

    3. Click "Create token"

    4. Name your token and set required permissions

    5. Save and copy the token (only shown once)

    Bitbucket Data Center

    1. Log in to Bitbucket

    2. Go to Manage Account > HTTP access tokens

    3. Click "Create token"

    4. Set a name and permissions

    5. Generate and copy the token immediately

    Store these tokens securely and use them in your Claude Desktop configuration as shown above.

    Overview

    The Atlassian DC MCP allows AI assistants to interact with Atlassian products through a standardized interface. It provides tools for:

    • Jira: Search, view, and create issues
    • Confluence: Access and manage content
    • Bitbucket: Interact with repositories and code

    Prerequisites

    • Node.js 18 or higher
    • npm 7 or higher (for workspaces support)
    • Atlassian Data Center instance or Cloud instance
    • API tokens for the Atlassian products you want to use

    Installation

    Clone the repository:

    bash
    git clone https://github.com/b1ff/atlassian-dc-mcp.git
    cd atlassian-dc-mcp

    Development

    This project is structured as an npm monorepo using workspaces. The workspaces are organized in the packages/ directory, with separate packages for each Atlassian product integration.

    Installing Dependencies

    To install all dependencies for all packages in the monorepo:

    bash
    npm install

    This will install:

    • Root-level dependencies defined in the root package.json
    • All dependencies for each package in the workspaces

    To install a dependency for a specific package:

    bash
    npm install  --workspace=@atlassian-dc-mcp/jira

    To install a dependency at the root level:

    bash
    npm install  -W

    Building the Project

    To build all packages:

    bash
    npm run build

    To build a specific package:

    bash
    npm run build --workspace=@atlassian-dc-mcp/jira

    Running in Development Mode

    To run a specific package in development mode:

    bash
    npm run dev:jira     # For Jira
    npm run dev:confluence  # For Confluence
    npm run dev:bitbucket   # For Bitbucket

    Configuration

    Create a .env file in the root directory with the following variables:

    code
    # Jira configuration - choose one of these options:
    JIRA_HOST=your-instance.atlassian.net
    # OR
    JIRA_API_BASE_PATH=https://your-instance.atlassian.net/rest
    # Note: part /api/2/search/ is added automatically, do not include it
    JIRA_API_TOKEN=your-api-token
    
    # Confluence configuration - choose one of these options:
    CONFLUENCE_HOST=your-instance.atlassian.net
    # OR
    CONFLUENCE_API_BASE_PATH=https://your-instance.atlassian.net/confluence
    # Note: part /rest/api is added automatically, do not include it
    CONFLUENCE_API_TOKEN=your-api-token
    
    # Bitbucket configuration - choose one of these options:
    BITBUCKET_HOST=your-instance.atlassian.net
    # OR
    BITBUCKET_API_BASE_PATH=https://your-instance.atlassian.net/rest
    # Note: part /api/latest/ is added automatically, do not include it
    BITBUCKET_API_TOKEN=your-api-token

    License

    MIT

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • DI

      Discogs Mcp Server

      TypeScript·
      59
    • QU

      Quran Mcp Server

      TypeScript·
      50
    • AN

      Anilist Mcp

      TypeScript·
      57

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • DI

      Discogs Mcp Server

      TypeScript·
      59
    • QU

      Quran Mcp Server

      TypeScript·
      50
    • AN

      Anilist Mcp

      TypeScript·
      57

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k