Confluence MCP Server

Productivitystdiov0.11.0
Repository

MCP server for Atlassian Confluence that lets AI agents search the knowledge base, read and create pages, update content, and navigate spaces. Useful for grounding answers in internal documentation and for drafting or maintaining wiki content directly from an AI client.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "confluence": {
      "command": "uvx",
      "args": [
        "mcp-atlassian"
      ],
      "env": {
        "CONFLUENCE_URL": "<YOUR_CONFLUENCE_URL>",
        "CONFLUENCE_API_TOKEN": "<YOUR_CONFLUENCE_API_TOKEN>",
        "CONFLUENCE_EMAIL": "<YOUR_CONFLUENCE_EMAIL>"
      }
    }
  }
}

Tools (3)

search_pages

Search Confluence content using text or CQL.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search text or CQL expression"
    },
    "space_key": {
      "type": "string",
      "description": "Optional space to scope the search"
    }
  }
}

get_page

Retrieve the content of a Confluence page by ID.

{
  "type": "object",
  "required": [
    "page_id"
  ],
  "properties": {
    "page_id": {
      "type": "string",
      "description": "Confluence page ID"
    }
  }
}

create_page

Create a new Confluence page in a space.

{
  "type": "object",
  "required": [
    "space_key",
    "title",
    "body"
  ],
  "properties": {
    "body": {
      "type": "string",
      "description": "Page body in storage or Markdown format"
    },
    "title": {
      "type": "string",
      "description": "Page title"
    },
    "parent_id": {
      "type": "string",
      "description": "Optional parent page ID"
    },
    "space_key": {
      "type": "string",
      "description": "Target space key"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Sooperset (@sooperset)
Repository
https://github.com/sooperset/mcp-atlassian
License
MIT
Version
0.11.0
Stars
2,600
Last Updated
June 24, 2026