Skip to main content
Glama

notion_bulk_property_update

Destructive

Update multiple Notion database properties in bulk via a natural-language message or structured JSON input, processed by the Lightbulb domain agent under your account context.

Instructions

Run the notion domain agent action bulk_property_update.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.3/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false, and idempotentHint=false, and the description does not contradict this. It adds some context by mentioning JWT, tenant, and company scoping, but it never explains what gets modified, whether changes are reversible, or what side effects the bulk update may have.

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

Conciseness3/5

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

The description is compact and the Args section is cleanly formatted, but the opening sentence merely restates the tool name and adds little value. The routing detail is useful but the overall structure spends limited space on implementation plumbing rather than on what the tool actually does.

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?

For a complex, destructive bulk operation with zero required parameters and no schema descriptions, this is far from complete. It does not explain what 'bulk_property_update' means, what inputs the JSON should contain, how targets are selected, or what outcome to expect. The presence of an output schema reduces the need for return-value details, but the core operational semantics are still missing.

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

Parameters2/5

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

Schema description coverage is 0%, so the description needed to compensate. It only labels message as 'free-text objective' and inputs as 'optional JSON string', without explaining what keys, target identifiers, property names, or value formats are expected. This is too vague to help an agent construct a valid call.

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

Purpose2/5

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

The description only says 'Run the notion domain agent action bulk_property_update', which restates the tool name without explaining what a bulk property update actually does. It does not identify the affected resource (Notion pages, databases, properties), the effect, or how it differs from sibling tools like notion_bulk_status_update or notion_bulk_update_pages.

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 use this tool versus alternatives. The routing and scope detail is implementation-oriented, not selection-oriented. An agent cannot determine whether to choose this over notion_bulk_update_pages, notion_update_page, or another sibling.

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