Skip to main content
Glama

notion_get_page

Retrieve a Notion page by its ID to access content and properties. Use the page_id input to fetch specific page data for reading or processing.

Instructions

Get page by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_idYesPage ID to fetch

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.1

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are supplied, so the description carries the full behavioral burden and supplies almost none of it: nothing about what is returned (page object vs. property values), whether a missing or inaccessible ID errors, or whether it requires integration permissions. For a read tool with zero annotation coverage this is a meaningful gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single four-word phrase, fully front-loaded with zero padding. It is efficient, but the brevity edges into under-specification rather than deliberate conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description is the only source of information about the tool's contract, and it says nothing about return shape, error behavior, or the ID format. For even a simple retrieval tool this leaves the agent under-informed before calling it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the single parameter is fully documented in the schema ('Page ID to fetch'), so the baseline is 3. The description's 'by ID' adds nothing the schema does not already say.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description pairs a specific verb ('Get') with a specific resource ('page') and its identifier, so the operation itself is unambiguous. It fails to distinguish this tool from lookalike siblings such as notion_get_database, notion_get_block, or notion_get_page_property, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to reach for this tool versus notion_search (to find a page you don't yet have an ID for) or notion_get_block_children (to read a page's contents). The agent is left to infer usage entirely from the name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.