Skip to main content
Glama
m2ai-mcp-servers

Notion Advisor

get_page

Fetch Notion page properties and metadata using the page ID or URL to view details and verify property values.

Instructions

Retrieve a page's properties and metadata. Use when user wants to view page details or check properties.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_idYesNotion page ID or URL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. 'Retrieve' and 'view' clearly signal a read-only operation, and 'properties and metadata' scopes what the agent should expect. It does not go into auth or error behavior, but for a simple read tool this is adequate.

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

Conciseness5/5

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

Two short sentences, front-loaded with the action and resource, followed by a clear usage condition. Every word earns its place with no redundancy.

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

Completeness4/5

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

For a single-parameter read tool with no output schema, the description adequately states what is retrieved and when to use it. It could be slightly more explicit that page content is not included, but 'properties and metadata' already implies that boundary.

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 description coverage is 100%, and the page_id property is already described as 'Notion page ID or URL.' The tool description adds no additional parameter meaning beyond the schema, so the baseline score of 3 applies.

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

Purpose5/5

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

The description begins with a specific verb and resource: 'Retrieve a page's properties and metadata.' This clearly distinguishes the tool from get_page_content (which likely returns content) and get_database (which targets databases).

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

Usage Guidelines4/5

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

The description gives an explicit usage cue: 'Use when user wants to view page details or check properties.' It does not, however, mention when not to use it or name alternatives like get_page_content, so it stops short of full routing guidance.

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