Skip to main content
Glama
jameslundie42

Schedule MCP Server

notion_update_appointment

Idempotent

Update existing Notion appointments by providing the appointment ID and only the fields to change—title, times, status, notes, and more.

Instructions

Update fields on an existing Notion appointment. Only provided fields change.

Args: params.notion_id: The Notion page ID (from notion_get_appointments). params.*: Any fields to update.

Returns: str: JSON dict of the updated appointment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover safety (readOnly=false, idempotent=true, destructive=false), and the description adds the key partial-update behavior ('Only provided fields change') and the return shape ('JSON dict of the updated appointment'). It does not address null-clearing semantics or external side effects, but the annotation coverage lowers the burden.

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?

The description is compact and front-loaded: the first sentence carries the core purpose, followed by concise Args and Returns sections. Every line earns its place, with no redundant prose or repetition of schema contents.

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?

Given a rich input schema, existing output schema, and annotations, the description provides the essential invocation context: the source of notion_id, partial-update semantics, and the return format. It is slightly thin on clearing-field behavior (null vs omitted), but this does not block correct use for the common update case.

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 provides detailed field descriptions for each updateable property, so the description does not need to repeat them. The description adds value by identifying the required notion_id source ('from notion_get_appointments') and by stating that any fields may be updated selectively, which clarifies the optional-parameter contract.

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 states a specific action—'Update fields on an existing Notion appointment'—with a clear resource and scope. 'Only provided fields change' differentiates it from create and get operations, and 'Notion' distinguishes it from Google Calendar siblings.

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

Usage Guidelines3/5

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

Usage is implied rather than explicit: the description tells the agent to get notion_id from notion_get_appointments, which signals a prerequisite, but it does not state when to prefer this tool over notion_create_appointment, notion_update_task, or gcal_update_event. No when-not-to-use guidance is provided.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jameslundie42/schedule-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server