← Marketplace
CO
@mcp-platform/confluence

Confluence MCP Connector

Read pages, search content, browse attachments, view labels and history with 13 tools.

Read-only by defaultInstall options
Read tools · 11

Useful from the first safe connection.

health_check

Validate connection

R0 Read
get_page

Page with labels

R0 Read
get_page_by_title

Find by title

R0 Read
search_pages

CQL search

R0 Read
search_pages_advanced

Paginated search

R0 Read
list_child_pages

Page tree

R0 Read
get_page_raw

Raw XHTML

R0 Read
get_page_metadata

JSON metadata

R0 Read
get_attachments

Attachments

R0 Read
get_labels

Labels

R0 Read
get_page_history

Version history

R0 Read
Write tools · 2

Visible, but never silently enabled.

create_page

Create page

Requires approval
update_page

Update with conflict handling

Requires approval
npm · ZIP · Docker

Choose an install method.

npm install @mcp-platform/confluence

Use placeholder credentials only in copied examples. Secrets belong in environment variables.

Quick start from package README

Validate before the first tool call.

Terminal
npm install
cp .env.example .env   # Set CONFLUENCE_BASE_URL and CONFLUENCE_PAT
npm run doctor         # Verify
npm start              # Run
IDE config

Copy placeholders, then supply your own values.

mcp.local.example.json
{
  "mcpServers": {
    "confluence": {
      "command": "node",
      "args": ["PATH/TO/mcp-platform/packages/mcp-confluence/src/index.js"],
      "env": {
        "CONFLUENCE_BASE_URL": "https://your-domain.atlassian.net/wiki",
        "CONFLUENCE_PAT": "YOUR_TOKEN_HERE",
        "CONFLUENCE_EMAIL": "you@example.com",
        "CONFLUENCE_ENABLE_WRITES": "false",
        "CONFLUENCE_REQUEST_TIMEOUT": "30000",
        "CONFLUENCE_MAX_RESULTS": "25"
      },
      "disabled": false
    }
  }
}
Example prompts

Start with a known outcome.

01

Find deployment page

02

Child pages of architecture

03

Labels on page 12345

04

Version history of design doc

05

Attachments on API spec

Security

Controls from the package source.

Read-only defaultSafe CQLNo TLS bypassCorrelation IDsTimeoutsVersion conflict handling

Security Policy — @mcp-platform/confluence

Read-only by default. Write tools require CONFLUENCE_ENABLE_WRITES=true. No TLS bypass. Use NODE_EXTRA_CA_CERTS for corporate certificates. CQL input is escaped to prevent injection. Tokens from environment variables only.

Report vulnerabilities directly to maintainers.