Atlassian MCP Server

by kompallik

Integrations

  • Provides a server for integrating with Atlassian cloud services, requiring an Atlassian account and API token.

  • Allows retrieving page content by ID and searching for content within Confluence pages.

  • Enables getting ticket details, searching tickets with JQL, creating new tickets, and adding comments to tickets in Jira.

Atlassian MCP Server

A Model Context Protocol (MCP) server for integrating with Atlassian JIRA and Confluence. This server provides tools to interact with JIRA tickets and Confluence pages through the MCP protocol.

Features

  • Get JIRA ticket details
  • Search for JIRA tickets using JQL
  • Create new JIRA tickets
  • Add comments to JIRA tickets
  • Get Confluence page content
  • Search for content in Confluence

Prerequisites

  • Node.js 16 or higher
  • An Atlassian Cloud account
  • An Atlassian API token

Installation

  1. Open Cline
  2. Go to Settings > MCP Servers
  3. Select the "Marketplace" tab
  4. Search for "Atlassian"
  5. Click "Install"
  6. Configure your Atlassian credentials when prompted

Option 2: Install from npm

npm install -g atlassian-mcp-server

Option 3: Install from source

  1. Clone the repository
  2. Run the install script:
./install.sh

Or manually:

  1. Install dependencies
npm install
  1. Build the project
npm run build
  1. Install globally
npm install -g .
  1. Run the setup
atlassian-mcp-setup

Configuration

You can configure the server using the setup script, a configuration file, or environment variables.

Run the setup script to create your configuration file:

npx atlassian-mcp-setup

Or if installed locally:

npm run setup

The script will guide you through the configuration process and create a config.json file in the config directory.

Using a configuration file manually

  1. Create a config.json file in the config directory (you can copy from config.sample.json)
  2. Fill in your Atlassian details:
{ "atlassian": { "baseUrl": "https://your-instance.atlassian.net", "email": "your-email@example.com", "token": "your-api-token-here" }, "server": { "name": "atlassian-server", "version": "0.1.0" } }

Using environment variables

Set the following environment variables:

  • ATLASSIAN_BASE_URL: Your Atlassian instance URL (e.g., https://your-instance.atlassian.net)
  • ATLASSIAN_EMAIL: Your Atlassian account email
  • ATLASSIAN_TOKEN: Your Atlassian API token
  • ATLASSIAN_CONFIG_PATH: (Optional) Path to a custom config file location

Getting an Atlassian API Token

  1. Log in to your Atlassian account at https://id.atlassian.com/manage-profile/security/api-tokens
  2. Click "Create API token"
  3. Give your token a name (e.g., "MCP Server")
  4. Copy the generated token (you won't be able to see it again)

Usage

Running the server

atlassian-mcp-server

Or if installed from source:

npm start

Integrating with Cline

  1. Open Cline
  2. Go to Settings > MCP Servers
  3. Select the "Marketplace" tab
  4. Search for "Atlassian"
  5. Click "Install"
  6. Configure your Atlassian credentials when prompted
Option 2: Manual Configuration

If you've installed the server manually, add the following to your MCP settings:

{ "mcpServers": { "atlassian": { "command": "atlassian-mcp-server", "args": [], "env": { "ATLASSIAN_CONFIG_PATH": "/path/to/your/config.json" }, "disabled": false } } }

Alternatively, you can provide the credentials directly in the settings:

{ "mcpServers": { "atlassian": { "command": "atlassian-mcp-server", "args": [], "env": { "ATLASSIAN_BASE_URL": "https://your-instance.atlassian.net", "ATLASSIAN_EMAIL": "your-email@example.com", "ATLASSIAN_TOKEN": "your-api-token-here" }, "disabled": false } } }

Available Tools

get_jira_ticket

Get details of a JIRA ticket by key.

Parameters:

  • ticket_key: JIRA ticket key (e.g., "PROJ-123")

search_jira_tickets

Search for JIRA tickets using JQL.

Parameters:

  • jql: JQL query string
  • max_results: Maximum number of results to return (default: 10)

create_jira_ticket

Create a new JIRA ticket.

Parameters:

  • project_key: Project key (e.g., "PROJ")
  • summary: Ticket summary/title
  • description: Ticket description
  • issue_type: Issue type (e.g., "Bug", "Task", "Story") (default: "Task")

add_comment_to_jira_ticket

Add a comment to a JIRA ticket.

Parameters:

  • ticket_key: JIRA ticket key (e.g., "PROJ-123")
  • comment: Comment text

get_confluence_page

Get a Confluence page by ID.

Parameters:

  • page_id: Confluence page ID

search_confluence

Search for content in Confluence.

Parameters:

  • query: Search query
  • limit: Maximum number of results (default: 10)

Publishing to the Marketplace

This server is configured to be published to the Cline MCP Marketplace using the GitHub repository at: https://github.com/kompallik/ATLASSIAN-MCP

To publish updates:

  1. Push your changes to the GitHub repository using the provided script:
npm run push-github
  1. Add an icon.png file in the assets directory if not already present
  2. Run the publish script:
npm run publish-mcp
  1. Follow the prompts to publish to npm and/or create a distribution package
  2. Submit your repository URL to the Cline MCP Marketplace team

License

MIT

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Provides integration with Atlassian products through the Model Context Protocol, allowing users to interact with JIRA tickets and Confluence pages.

  1. Features
    1. Prerequisites
      1. Installation
        1. Option 1: Install from Cline Marketplace (recommended)
        2. Option 2: Install from npm
        3. Option 3: Install from source
      2. Configuration
        1. Using the setup script (recommended)
        2. Using a configuration file manually
        3. Using environment variables
      3. Getting an Atlassian API Token
        1. Usage
          1. Running the server
          2. Integrating with Cline
        2. Available Tools
          1. get_jira_ticket
          2. search_jira_tickets
          3. create_jira_ticket
          4. add_comment_to_jira_ticket
          5. get_confluence_page
          6. search_confluence
        3. Publishing to the Marketplace
          1. License

            Related MCP Servers

            • A
              security
              A
              license
              A
              quality
              Model Context Protocol (MCP) server for Atlassian Cloud products (Confluence and Jira). This integration is designed specifically for Atlassian Cloud instances and does not support Atlassian Server or Data Center deployments.
              Last updated -
              27
              1,323
              Python
              MIT License
              • Apple
            • A
              security
              A
              license
              A
              quality
              A Model Context Protocol server that provides integration with Jira, allowing Large Language Models to interact with Jira projects, boards, sprints, and issues through natural language.
              Last updated -
              5
              87
              2
              TypeScript
              MIT License
              • Apple
            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that enables interaction with Jira's REST API using natural language commands, allowing users to manage Jira projects, issues, comments, and workflows through Claude Desktop and other MCP clients.
              Last updated -
              1
              Python
              MIT License
            • -
              security
              A
              license
              -
              quality
              Model Context Protocol server for integrating with Atlassian products (Confluence and Jira) that supports both Atlassian Cloud and Server/Data Center deployments.
              Last updated -
              1
              Python
              MIT License
              • Apple
              • Linux

            View all related MCP servers

            ID: ok85tqlb4u