notion_get_page

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

Get a Notion page by ID. Returns full properties, metadata, and content structure for reading or editing.

Parameters

NameTypeRequiredDescription
page_idstringyesNotion page ID (UUID format, with or without dashes)

Example call

Arguments

{
  "page_id": "550e8400e29b41d4a716446655440000"
}

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_get_page","arguments":{"page_id":"550e8400e29b41d4a716446655440000"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('notion_get_page', {
  "page_id": "550e8400e29b41d4a716446655440000"
});

Response shape

FieldTypeDescription
objectstringObject type (‘page’)
idstringPage ID
created_timestringISO 8601 creation timestamp
last_edited_timestringISO 8601 last edit timestamp
created_byobjectCreator user object
last_edited_byobjectLast editor user object
parentobjectParent object reference
archivedbooleanWhether page is archived
propertiesobjectPage properties and field values
urlstringNotion web URL for the page
Full JSON Schema
{
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "description": "Object type ('page')"
    },
    "id": {
      "type": "string",
      "description": "Page ID"
    },
    "created_time": {
      "type": "string",
      "description": "ISO 8601 creation timestamp"
    },
    "last_edited_time": {
      "type": "string",
      "description": "ISO 8601 last edit timestamp"
    },
    "created_by": {
      "type": "object",
      "description": "Creator user object",
      "properties": {
        "object": {
          "type": "string"
        },
        "id": {
          "type": "string"
        }
      }
    },
    "last_edited_by": {
      "type": "object",
      "description": "Last editor user object",
      "properties": {
        "object": {
          "type": "string"
        },
        "id": {
          "type": "string"
        }
      }
    },
    "parent": {
      "type": "object",
      "description": "Parent object reference",
      "properties": {
        "type": {
          "type": "string"
        },
        "page_id": {
          "type": "string"
        },
        "database_id": {
          "type": "string"
        }
      }
    },
    "archived": {
      "type": "boolean",
      "description": "Whether page is archived"
    },
    "properties": {
      "type": "object",
      "description": "Page properties and field values"
    },
    "url": {
      "type": "string",
      "description": "Notion web URL for the page"
    }
  }
}

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 May 9, 2026