Skip to main content
Glama
ai-aviate

better-mcp-notion

by ai-aviate

update

Update Notion page properties like Status, Priority, or Due Date without altering page content. Specify the page and property values to apply changes instantly.

Instructions

Quickly update page properties without rewriting content. Much simpler than the write tool for property-only changes.

The page content (blocks) is never touched — only properties are updated.

Parameters

  • page: Page ID, URL, or name

  • properties: Key-value object of properties to set

Examples

Update a single property: update({ page: "abc123", properties: { "Status": "Done" } })

Update multiple properties: update({ page: "My Task", properties: { "Status": "Done", "Priority": "High", "Due Date": "2026-03-01" } })

Supported value types:

  • Text: "value"

  • Number: 42

  • Checkbox: true / false

  • Date: "2026-03-01"

  • Date range: "2026-03-01 to 2026-03-15"

  • Select/Status: "Option Name"

  • Multi-select: ["tag1", "tag2"]

  • URL: "https://..."

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageYesPage ID, URL, or name
propertiesYesProperties to update as key-value pairs (e.g. { "Status": "Done", "Priority": "High" })

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.3

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It usefully discloses that page content/blocks are never touched and only properties are updated, but it does not cover merge/overwrite semantics, permissions, failure modes, or return values.

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?

The description is moderately long but well-structured with sections for parameters, examples, and value types. Each section adds practical guidance, though the parameter section partly restates the schema.

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 two-parameter update tool with no output schema, the description provides enough guidance to invoke it correctly: page identifier format, properties object shape, and value encodings. It omits response/error details, but those are not essential for this simple tool.

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

Parameters4/5

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

The input schema already describes both parameters, so the baseline is 3. The description adds examples and a supported value-type list (date ranges, multi-select, checkboxes, URLs) that clarify how to encode property values, going beyond the schema.

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 clearly states it updates page properties without rewriting content, and explicitly contrasts itself with the write tool for property-only changes. This makes its purpose distinct from sibling tools.

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?

It names the write tool as the alternative for content changes and frames itself as the simpler option for property-only updates. It does not spell out explicit when-not-to-use conditions or cover other siblings, but the intended use case is clear.

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

Deploy Server

Other Tools