
Atlassian MCP Server
Provides integration with Atlassian products through the Model Context Protocol, allowing users to interact with JIRA tickets and Confluence pages.
README
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
Option 1: Install from Cline Marketplace (recommended)
- Open Cline
- Go to Settings > MCP Servers
- Select the "Marketplace" tab
- Search for "Atlassian"
- Click "Install"
- Configure your Atlassian credentials when prompted
Option 2: Install from npm
npm install -g atlassian-mcp-server
Option 3: Install from source
- Clone the repository
- Run the install script:
./install.sh
Or manually:
- Install dependencies
npm install
- Build the project
npm run build
- Install globally
npm install -g .
- 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
- Create a
config.json
file in theconfig
directory (you can copy fromconfig.sample.json
) - 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 emailATLASSIAN_TOKEN
: Your Atlassian API tokenATLASSIAN_CONFIG_PATH
: (Optional) Path to a custom config file location
Getting an Atlassian API Token
- Log in to your Atlassian account at https://id.atlassian.com/manage-profile/security/api-tokens
- Click "Create API token"
- Give your token a name (e.g., "MCP Server")
- 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)
- Open Cline
- Go to Settings > MCP Servers
- Select the "Marketplace" tab
- Search for "Atlassian"
- Click "Install"
- 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 stringmax_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/titledescription
: Ticket descriptionissue_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 querylimit
: 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:
- Push your changes to the GitHub repository using the provided script:
npm run push-github
- Add an
icon.png
file in theassets
directory if not already present - Run the publish script:
npm run publish-mcp
- Follow the prompts to publish to npm and/or create a distribution package
- Submit your repository URL to the Cline MCP Marketplace team
License
MIT
Recommended Servers
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.
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.
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.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.