confluence_get_page

Pack: confluence · Endpoint: https://gateway.pipeworx.io/confluence/mcp

Get full content of a Confluence page by ID. Returns title, body content, status, version, and space info.

Parameters

NameTypeRequiredDescription
page_idstringyesPage ID
body_formatstringnoBody format to return: “storage” (HTML) or “atlas_doc_format” (ADF). Default: “storage”

Example call

Arguments

{
  "page_id": "12345"
}

curl

curl -X POST https://gateway.pipeworx.io/confluence/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"confluence_get_page","arguments":{"page_id":"12345"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('confluence_get_page', {
  "page_id": "12345"
});

More examples

{
  "page_id": "67890",
  "body_format": "atlas_doc_format"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Full page content with metadata"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "confluence": {
      "url": "https://gateway.pipeworx.io/confluence/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026