notion_list_pages
Pack: notion_connect · Endpoint: https://gateway.pipeworx.io/notion_connect/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/notion_list_pages for the schema, then POST the same URL with its arguments for the data.
List all accessible pages in your Notion workspace. Returns titles and IDs to discover available content.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page_size | number | no | Number of results to return (default 10, max 100) |
start_cursor | string | no | Pagination cursor for next page of results |
Example call
Arguments
{
"page_size": 10
}
curl
curl -X POST https://gateway.pipeworx.io/notion_connect/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"notion_list_pages","arguments":{"page_size":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('notion_list_pages', {
"page_size": 10
});
Response shape
| Field | Type | Description |
|---|---|---|
object | string | Always ‘list’ |
results | array | Array of accessible pages |
next_cursor | string | null | Pagination cursor for next page |
has_more | boolean | Whether more results exist |
Full JSON Schema
{
"type": "object",
"properties": {
"object": {
"type": "string",
"description": "Always 'list'"
},
"results": {
"type": "array",
"description": "Array of accessible pages",
"items": {
"type": "object",
"properties": {
"object": {
"type": "string",
"description": "Object type ('page')"
},
"id": {
"type": "string",
"description": "Page ID"
},
"title": {
"type": "array",
"description": "Page title content blocks",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"content": {
"type": "string"
}
}
}
}
}
}
}
}
},
"next_cursor": {
"type": [
"string",
"null"
],
"description": "Pagination cursor for next page"
},
"has_more": {
"type": "boolean",
"description": "Whether more results exist"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"notion_connect": {
"url": "https://gateway.pipeworx.io/notion_connect/mcp"
}
}
}
See Getting Started for client-specific install steps.