Aerostack
electrical_services

Confluence MCP Server — Hosted Api Connectors, Any AI Agent

MCP Server language Hosted language Public

Read and write Confluence pages, spaces, comments, and blog posts — your AI-powered wiki assistant.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "confluence": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-confluence",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+9 more

Natural Language Prompt

“Use the _ping tool to verify confluence credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-confluence — Confluence MCP Server

Search pages, manage spaces, and create documentation in your Confluence wiki.

Confluence is the knowledge management hub for teams using Atlassian. This MCP server gives your AI agents the ability to search across your wiki, read and create pages, manage spaces, and add comments — making Confluence a natural knowledge source and documentation target for automated workflows and AI-driven agents.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-confluence


What You Can Do

  • Search your entire wiki using CQL (Confluence Query Language) to find relevant documentation, runbooks, or meeting notes before an agent responds
  • Read full page content including body HTML so agents can summarize, extract, or reference internal docs
  • Create and update pages programmatically — generate post-mortems, deploy summaries, meeting notes, or API docs directly from agent workflows
  • Browse spaces and page trees to discover knowledge structure and navigate hierarchies
  • Add comments to pages as part of review workflows or automated feedback loops

Setup

Step 1: Get Your Confluence Cloud URL

Your Confluence URL looks like https://yoursite.atlassian.net. This is the base URL for all API calls.

Step 2: Create an API Token
  1. Go to id.atlassian.com/manage-profile/security/api-tokens
  2. Click Create API token
  3. Give it a label (e.g., "Aerostack MCP")
  4. Copy the token — you won't be able to see it again
Step 3: Add to Aerostack Workspace
  1. Go to your Aerostack workspace → Add Server → search "Confluence"
  2. Enter your three secrets when prompted:
    • CONFLUENCE_URL — your Atlassian site URL (e.g. https://yoursite.atlassian.net)
    • CONFLUENCE_EMAIL — the email address associated with your Atlassian account
    • CONFLUENCE_API_TOKEN — the API token you just created
  3. Click Test to verify the connection

Available Tools

Tool Description
search_content Search Confluence content using CQL queries
get_page Get a page by ID with full body content
create_page Create a new page in a space
update_page Update an existing page (requires current version number)
list_spaces List all spaces in the instance
get_space Get details for a specific space
list_pages List pages in a space with sorting
add_comment Add a footer comment to a page
get_page_children Get child pages of a parent page

Configuration

Variable Required How to Get
CONFLUENCE_URL Yes Your Atlassian site URL (e.g. https://yoursite.atlassian.net)
CONFLUENCE_EMAIL Yes Your Atlassian account email address
CONFLUENCE_API_TOKEN Yes id.atlassian.com → Security → API tokens

Example Prompts

"Search Confluence for our deployment runbook"
"Get the content of page 12345 and summarize the key points"
"Create a new page in the Engineering space titled 'Sprint 42 Retrospective' with a summary of this week's work"
"List all spaces and find which one contains our API documentation"
"Add a comment to the incident report page saying the root cause has been identified"
"Show me all child pages under our Architecture Decisions page"

CQL Query Examples

CQL (Confluence Query Language) is used with the search_content tool:

Query What it finds
type=page AND text~"deploy guide" Pages containing "deploy guide"
type=page AND space=ENG All pages in the ENG space
type=page AND creator=currentUser() Pages you created
type=page AND lastModified>now("-7d") Pages modified in the last 7 days
type=page AND title="Runbook" Pages with exact title "Runbook"
type=page AND label="production" Pages labeled "production"

Direct API Call

curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-confluence \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-CONFLUENCE-URL: https://yoursite.atlassian.net' \
  -H 'X-Mcp-Secret-CONFLUENCE-EMAIL: you@company.com' \
  -H 'X-Mcp-Secret-CONFLUENCE-API-TOKEN: your-api-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_content","arguments":{"cql":"type=page AND text~\"deploy guide\""}}}'

Security Notes

  • API tokens have the same permissions as your Atlassian account — use a service account with limited permissions for production
  • Tokens do not expire automatically but can be revoked at any time from the Atlassian security settings
  • All secrets are transmitted via X-Mcp-Secret-* headers and never stored by the MCP worker
  • The worker uses Basic auth (email:token base64-encoded) as required by the Confluence Cloud REST API

License

MIT

terminal Tools (15)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Confluence credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
list_spaces #2

List all Confluence spaces

terminal
get_space #3

Get details of a specific Confluence space

terminal
list_pages #4

List pages in a Confluence space

terminal
get_page #5

Get a specific Confluence page with body content

terminal
create_page #6

Create a new Confluence page

terminal
update_page #7

Update an existing Confluence page

terminal
delete_page #8

Delete a Confluence page

terminal
search_content #9

Search Confluence content using CQL (Confluence Query Language)

terminal
list_children #10

List child pages of a Confluence page

terminal
get_page_history #11

Get version history of a Confluence page

terminal
add_comment #12

Add a comment to a Confluence page

terminal
list_comments #13

List comments on a Confluence page

terminal
list_blog_posts #14

List blog posts in a Confluence space

terminal
get_current_user #15

Get the current authenticated Confluence user

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 15

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-confluence

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

Frequently asked questions

What is the Confluence MCP server and what can it do? +

The Confluence MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_spaces`, `get_space`, `list_pages`, `get_page`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Confluence MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Confluence MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Confluence MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Confluence MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-confluence": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-confluence"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Confluence MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-confluence", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-confluence"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Confluence MCP require authentication? +

Yes. Confluence requires authentication. Check the MCP's documentation for the required credentials.