.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sooperset/mcp-atlassian
home/mcp-servers/sooperset/mcp-atlassian
sooperset avatar

mcp-atlassian

bysooperset· 1 MCP server

Installs

1.7M

Stars

5.6k

Forks

1.3k

Category

AI Agents & MCP

View on GitHub

TL;DR

Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). Supports both Cloud and Server/Data Center deployments.

How to install mcp-atlassian?

sooperset/mcp-atlassian
$git clone https://github.com/sooperset/mcp-atlassian

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-atlassian by running `git clone https://github.com/sooperset/mcp-atlassian`, then use it for the current task and follow its documentation at https://github.com/sooperset/mcp-atlassian.

Files · 1

View on GitHub
README.md
1# MCP Atlassian
2 
3![PyPI Version](https://img.shields.io/pypi/v/mcp-atlassian)
4![PyPI - Downloads](https://img.shields.io/pypi/dm/mcp-atlassian)
5![PePy - Total Downloads](https://static.pepy.tech/personalized-badge/mcp-atlassian?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Total%20Downloads)
6[![Run Tests](https://github.com/sooperset/mcp-atlassian/actions/workflows/tests.yml/badge.svg)](https://github.com/sooperset/mcp-atlassian/actions/workflows/tests.yml)
7![License](https://img.shields.io/github/license/sooperset/mcp-atlassian)
8[![Docs](https://img.shields.io/badge/docs-mintlify-blue)](https://mcp-atlassian.soomiles.com)
9 
10Model Context Protocol (MCP) server for Atlassian products (Confluence and Jira). Supports both Cloud and Server/Data Center deployments.
11 
12https://github.com/user-attachments/assets/35303504-14c6-4ae4-913b-7c25ea511c3e
13 
14<details>
15<summary>Confluence Demo</summary>
16 
17https://github.com/user-attachments/assets/7fe9c488-ad0c-4876-9b54-120b666bb785
18 
19</details>
20 
21## Quick Start
22 
23### 1. Get Your API Token
24 
25Go to https://id.atlassian.com/manage-profile/security/api-tokens and create a token.
26 
27> For Server/Data Center, use a Personal Access Token instead. See [Authentication](https://mcp-atlassian.soomiles.com/docs/authentication).
28 
29### 2. Configure Your IDE
30 
31Add to your Claude Desktop or Cursor MCP configuration:
32 
33```json
34{
35 "mcpServers": {
36 "mcp-atlassian": {
37 "command": "uvx",
38 "args": ["mcp-atlassian"],
39 "env": {
40 "JIRA_URL": "https://your-company.atlassian.net",
41 "JIRA_USERNAME": "your.email@company.com",
42 "JIRA_API_TOKEN": "your_api_token",
43 "CONFLUENCE_URL": "https://your-company.atlassian.net/wiki",
44 "CONFLUENCE_USERNAME": "your.email@company.com",
45 "CONFLUENCE_API_TOKEN": "your_api_token"
46 }
47 }
48 }
49}
50```
51 
52> **Server/Data Center users**: Use `JIRA_PERSONAL_TOKEN` instead of `JIRA_USERNAME` + `JIRA_API_TOKEN`. See [Authentication](https://mcp-atlassian.soomiles.com/docs/authentication) for details.
53 
54#### Autohand Code
55 
56Use the same `uvx` server with your Atlassian credentials:
57 
58```bash
59autohand mcp add mcp-atlassian env \
60 JIRA_URL=https://your-company.atlassian.net \
61 JIRA_USERNAME=your.email@company.com \
62 JIRA_API_TOKEN=your_api_token \
63 CONFLUENCE_URL=https://your-company.atlassian.net/wiki \
64 CONFLUENCE_USERNAME=your.email@company.com \
65 CONFLUENCE_API_TOKEN=your_api_token \
66 uvx mcp-atlassian
67```
68 
69Add `--scope project` after `add` to keep the configuration in the current
70project. See [Autohand Code](https://github.com/autohandai/code-cli/) for current
71installation and CLI details.
72 
73### 3. Start Using
74 
75Ask your AI assistant to:
76- **"Find issues assigned to me in PROJ project"**
77- **"Search Confluence for onboarding docs"**
78- **"Create a bug ticket for the login issue"**
79- **"Update the status of PROJ-123 to Done"**
80 
81## Documentation
82 
83Full documentation is available at **[mcp-atlassian.soomiles.com](https://mcp-atlassian.soomiles.com)**.
84 
85Documentation is also available in [llms.txt format](https://llmstxt.org/), which LLMs can consume easily:
86- [`llms.txt`](https://mcp-atlassian.soomiles.com/llms.txt) — documentation sitemap
87- [`llms-full.txt`](https://mcp-atlassian.soomiles.com/llms-full.txt) — complete documentation
88 
89| Topic | Description |
90|-------|-------------|
91| [Installation](https://mcp-atlassian.soomiles.com/docs/installation) | uvx, Docker, pip, from source |
92| [Authentication](https://mcp-atlassian.soomiles.com/docs/authentication) | API tokens, PAT, OAuth 2.0 |
93| [Configuration](https://mcp-atlassian.soomiles.com/docs/configuration) | IDE setup, environment variables |
94| [HTTP Transport](https://mcp-atlassian.soomiles.com/docs/http-transport) | SSE, streamable-http, multi-user |
95| [Tools Reference](https://mcp-atlassian.soomiles.com/docs/tools-reference) | All Jira & Confluence tools |
96| [Troubleshooting](https://mcp-atlassian.soomiles.com/docs/troubleshooting) | Common issues & deb

Preview

sooperset/mcp-atlassiansooperset/mcp-atlassian

# MCP Atlassian

![PyPI Version](https://img.shields.io/pypi/v/mcp-atlassian)

![PyPI - Downloads](https://img.shields.io/pypi/dm/mcp-atlassian)

![PePy - Total Downloads](https://static.pepy.tech/personalized-badge/mcp-atlassian?period=total&units=international_system&left_color=grey&right_color=blue&lef

Reposooperset/mcp-atlassian
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPatlassianconfluence

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  5. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k
  6. czlonkowski avatarn8n-mcpIntegration between n8n workflow automation and Model Context Protocol (MCP)MCP ServersJul 2026495k22k