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
| Name | Type | Required | Description |
|---|---|---|---|
space_id | string | yes | Space ID to list pages from |
limit | number | no | Number of pages to return (default 25, max 100) |
sort | string | no | Sort 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
| Field | Type | Description |
|---|---|---|
pages | array | List 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.