confluence_list_pages

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

List all pages in a Confluence space. Returns page ID, title, status, and version. Specify space key (e.g., “ENG”, “SALES”).

Parameters

NameTypeRequiredDescription
space_idstringyesSpace ID to list pages from
limitnumbernoNumber of pages to return (default 25, max 100)
sortstringnoSort order: “created-date”, “-created-date”, “modified-date”, “-modified-date”, “title” (default: “-modified-date”)

Example call

Arguments

{
  "space_id": "ENG",
  "limit": 25
}

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_list_pages","arguments":{"space_id":"ENG","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('confluence_list_pages', {
  "space_id": "ENG",
  "limit": 25
});

More examples

{
  "space_id": "SALES",
  "limit": 50,
  "sort": "title"
}

Response shape

Always returns: pages

FieldTypeDescription
pagesarrayList of pages in the space
Full JSON Schema
{
  "type": "object",
  "properties": {
    "pages": {
      "type": "array",
      "description": "List of pages in the space",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "pages"
  ]
}

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