Confluence Mcp Server

by qihaze123

266 downloads
Not rated
GitHub

About

Confluence MCP server for Cloud/Server/Data Center. Supports whoami, search, raw CQL, create and update page.

Details

Author
qihaze123
Downloads
266
Categories
Knowledge Base, Cloud Service

- Retrieve current authenticated user (whoami)
- Keyword search for pages
- Execute raw CQL for advanced queries
- Fetch page details with body and version
- Create page with optional parentId
- Update page and auto-bump version

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Confluence Mcp Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Run it via npx with required environment variables: CONF_MODE (cloud or server), CONF_BASE_URL, CONF_AUTH_MODE (default auto), CONF_USERNAME, and CONF_TOKEN. Configure your MCP client with the command npx -y confluence-mcp-server@1.1.0 and the above env settings.

confluence_get_current_user

Get current authenticated Confluence user (whoami).

confluence_search_pages

Search Confluence pages by keyword. Returns unified fields: id, type, title, spaceKey, url, version.

confluence_execute_cql_search

Execute raw Confluence CQL search. Returns unified fields: id, type, title, spaceKey, url, version.

confluence_get_page

Get a Confluence page by ID. Returns unified fields and bodyStorageValue.

confluence_create_page

Create a Confluence page. Supports optional parentId. Returns unified fields.

confluence_update_page

Update a Confluence page content. Auto increments version. Returns unified fields.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "confluence mcp server": {
            "confluence": {
                "command": "npx",
                "args": [
                    "-y",
                    "confluence-mcp-server@1.1.0"
                ],
                "env": {
                    "CONF_MODE": "server",
                    "CONF_BASE_URL": "https://confluence.example.com",
                    "CONF_AUTH_MODE": "auto",
                    "CONF_USERNAME": "your-username",
                    "CONF_TOKEN": "your-token"
                }
            }
        }
    }
}

McpServers

{
    "confluence": {
        "command": "npx",
        "args": [
            "-y",
            "confluence-mcp-server@1.1.0"
        ],
        "env": {
            "CONF_MODE": "server",
            "CONF_BASE_URL": "https://confluence.example.com",
            "CONF_AUTH_MODE": "auto",
            "CONF_USERNAME": "your-username",
            "CONF_TOKEN": "your-token"
        }
    }
}

Confluence MCP Server

Confluence MCP server for Atlassian Confluence Cloud and Server/Data Center.

Features

- whoami: get current authenticated user - - search_pages: keyword search for pages - - execute_cql_search: run raw CQL for advanced queries - - get_page: fetch page detail with body/version - - create_page: create page with optional parentId - - update_page: update page and auto bump version - - ## Quick Start (NPX) - - ``json - { - "mcpServers": { - "confluence": { - "command": "npx", - "args": ["-y", "confluence-mcp-server@1.1.0"], - "env": { - "CONF_MODE": "server", - "CONF_BASE_URL": "https://confluence.example.com", - "CONF_AUTH_MODE": "auto", - "CONF_USERNAME": "your-username", - "CONF_TOKEN": "your-token" - } - } - } - } - ` - - ## Notes - - - CONF_MODE supports cloud and server. - - CONF_AUTH_MODE=auto` lets the server choose the suitable auth flow. -
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.