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

NameTypeRequiredDescription
page_sizenumbernoNumber of results to return (default 10, max 100)
start_cursorstringnoPagination 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

FieldTypeDescription
objectstringAlways ‘list’
resultsarrayArray of accessible pages
next_cursorstring | nullPagination cursor for next page
has_morebooleanWhether 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.

Regenerated from source · build September 22, 2026