Atlassian Confluence

v3.3.0Business Applicationsstable

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 M

aiai-connectorai-integrationanthropicatlassian
Share:
56
Stars
0
Downloads
0
Weekly
0/5

What is Atlassian Confluence?

Atlassian Confluence is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 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 ...

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 M

This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Node.js/TypeScript MCP server for Atlassian Confluence. Prov

Use Cases

Knowledge base search and content management
Confluence space and page operations
aashari

Maintainer

LicenseISC License
Languagetypescript
Versionv3.3.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @aashari/mcp-server-atlassian-confluence

Manual Installation

npx -y @aashari/mcp-server-atlassian-confluence

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Atlassian Confluence

The Atlassian Confluence MCP server is a Node.js/TypeScript server that gives AI assistants direct access to your Confluence knowledge base via the official Confluence REST API. It exposes five generic HTTP-method tools (GET, POST, PUT, PATCH, DELETE) that map to any Confluence API endpoint, enabling LLMs to list spaces, read pages as Markdown, search with CQL, and create or update content. Developers and teams use it to let Claude or other AI clients query internal documentation, generate summaries, and keep Confluence pages up to date without leaving their AI workflow.

Prerequisites

  • Node.js 18 or later installed
  • An Atlassian Cloud account with a Confluence site (e.g. mycompany.atlassian.net)
  • An Atlassian API token generated from https://id.atlassian.com/manage-profile/security/api-tokens
  • An MCP-compatible client such as Claude Desktop or Claude Code
1

Generate an Atlassian API token

Log in to your Atlassian account, go to Account Settings → Security → API Tokens, and create a new token. Copy the token value — it is shown only once.

2

Set the required environment variables

Export the three required variables in your shell or add them to a .env file. ATLASSIAN_SITE_NAME is the subdomain of your Atlassian instance, ATLASSIAN_USER_EMAIL is your login email, and ATLASSIAN_API_TOKEN is the token you just created.

export ATLASSIAN_SITE_NAME=mycompany
export [email protected]
export ATLASSIAN_API_TOKEN=your_api_token_here
3

Test the server from the command line

Run a quick test using npx to list all Confluence spaces and verify your credentials work.

npx -y @aashari/mcp-server-atlassian-confluence get --path "/wiki/api/v2/spaces"
4

Add the server to your MCP client configuration

Open your claude_desktop_config.json and add the server entry with the three environment variables so Claude Desktop loads it automatically on startup.

{
  "mcpServers": {
    "confluence": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-confluence"],
      "env": {
        "ATLASSIAN_SITE_NAME": "mycompany",
        "ATLASSIAN_USER_EMAIL": "[email protected]",
        "ATLASSIAN_API_TOKEN": "your_api_token_here"
      }
    }
  }
}
5

Restart your MCP client

Restart Claude Desktop (or your chosen MCP client) so it picks up the new server configuration. The Confluence tools will appear as conf_get, conf_post, conf_put, conf_patch, and conf_delete.

Atlassian Confluence Examples

Client configuration

Full claude_desktop_config.json block for the Atlassian Confluence MCP server using npx.

{
  "mcpServers": {
    "confluence": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-confluence"],
      "env": {
        "ATLASSIAN_SITE_NAME": "mycompany",
        "ATLASSIAN_USER_EMAIL": "[email protected]",
        "ATLASSIAN_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Prompts to try

Example prompts that exercise the Confluence tools once the server is connected.

- "List all Confluence spaces in our instance and summarize what each one covers."
- "Search Confluence for pages mentioning 'onboarding' using CQL and show me the titles and URLs."
- "Fetch the content of the page at /wiki/api/v2/pages/12345 and summarize the key points."
- "Create a new Confluence page titled 'Q3 Retrospective' in space DEV with a bullet-point template."
- "Find all pages updated in the last 7 days in the ENGINEERING space."

Troubleshooting Atlassian Confluence

401 Unauthorized errors when calling Confluence API endpoints

Verify that ATLASSIAN_USER_EMAIL matches the email on your Atlassian account exactly, and that ATLASSIAN_API_TOKEN is valid. API tokens expire if revoked; generate a new one at https://id.atlassian.com/manage-profile/security/api-tokens.

ATLASSIAN_SITE_NAME is incorrect and the server cannot resolve the host

The ATLASSIAN_SITE_NAME should be only the subdomain portion (e.g. 'mycompany', not 'mycompany.atlassian.net'). Double-check the value in your environment or config file.

npx command not found or server fails to start

Ensure Node.js 18+ is installed and npx is available on your PATH. Run 'node --version' to confirm. If using Claude Desktop on macOS, you may need to set the full path to npx in the 'command' field.

Frequently Asked Questions about Atlassian Confluence

What is Atlassian Confluence?

Atlassian Confluence is a Model Context Protocol (MCP) server that 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 m It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Atlassian Confluence?

Install via npm with the command: npx -y @aashari/mcp-server-atlassian-confluence. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Atlassian Confluence?

Atlassian Confluence works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Atlassian Confluence free to use?

Yes, Atlassian Confluence is open source and available under the ISC License license. You can use it freely in both personal and commercial projects.

Atlassian Confluence Alternatives — Similar Business Applications Servers

Looking for alternatives to Atlassian Confluence? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.

n8n

189.1k

A comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou

LobeHub

77.5k

🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.

Jeecgboot

46.4k

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

CowAgent

44.7k

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

Minds Platform

39.2k

Platform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.

Astrbot

32.8k

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨

Browse More Business Applications MCP Servers

Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "atlassian-confluence-mcp-server": { "command": "npx", "args": ["-y", "@aashari/mcp-server-atlassian-confluence"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Atlassian Confluence?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides