get-page
Retrieve specific page data from Notion workspaces by providing the page ID. Enables Claude and other LLMs to access and interact with Notion content programmatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}