kompallik ATLASSIAN MCP

kompallik ATLASSIAN MCP avatar

by kompallik

MCP to integrate with JIRA & CONFLUENCE

What is kompallik ATLASSIAN MCP

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.

Atlassian <strong>MCP Server</strong>

GitHub Repository

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

Option 1: Install from Cline Marketplace (recommended)

  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.

Using the setup script (recommended)

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": "[email protected]",
    "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

Option 1: Install from Marketplace (recommended)

  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": "[email protected]",
        "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

Leave a Comment

Frequently Asked Questions

What is MCP?

MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.

What are MCP Servers?

MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.

How do MCP Servers work?

MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.

Are MCP Servers secure?

Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.

Related MCP Servers

chrisdoc hevy mcp avatar

chrisdoc hevy mcp

mcp
sylphlab pdf reader mcp avatar

sylphlab pdf reader mcp

An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.

pdf-parsetypescriptnodejs
aashari mcp server atlassian bitbucket avatar

aashari mcp server atlassian bitbucket

Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.

atlassianrepositorymcp
aashari mcp server atlassian confluence avatar

aashari mcp server atlassian confluence

Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.

atlassianmcpconfluence
prisma prisma avatar

prisma prisma

Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

cockroachdbgomcp
Zzzccs123 mcp sentry avatar

Zzzccs123 mcp sentry

mcp sentry for typescript sdk

mcptypescript
zhuzhoulin dify mcp server avatar

zhuzhoulin dify mcp server

mcp
zhongmingyuan mcp my mac avatar

zhongmingyuan mcp my mac

mcp
zhixiaoqiang desktop image manager mcp avatar

zhixiaoqiang desktop image manager mcp

MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)

mcp
zhixiaoqiang antd components mcp avatar

zhixiaoqiang antd components mcp

An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询

designantdapi

Submit Your MCP Server

Share your MCP server with the community

Submit Now