Skip to main content
Glama

Move an event between calendars

move_event

Move a Google Calendar event from one calendar to another within the same account; use create and delete for different accounts.

Instructions

Move an event to a different calendar on the SAME account. Google cannot move an event between two different Google accounts; to do that, create it on the target account and delete the original.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountYesThe account id to act on, e.g. "work" or "personal". Required whenever more than one account could apply.
event_idYes
to_calendarYesDestination calendar id, on the same account.
from_calendarYesCalendar id the event is currently on.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, idempotentHint=false, destructiveHint=false and openWorldHint=true, so the safety profile is covered. The description adds real behavioral context the annotations don't: a hard same-account constraint imposed by the underlying API. It still omits what happens to the source copy (does the original survive?) and any permission requirements, which is why it is not a 5.

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 sentences, zero filler, with the scope constraint front-loaded before the workaround. Every clause earns its place.

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 four-parameter mutation tool with no output schema, the description covers the essential constraint and failure mode. Remaining gaps are the fate of the original event and permission prerequisites, which an agent might still want.

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 75%, with to_calendar and from_calendar already documented in the schema ('on the same account', 'currently on'). The description's same-account statement reinforces but does not extend those, and event_id remains undocumented in both places. Baseline 3 fits.

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?

States a specific verb (move) and resource (event) and bounds the scope precisely with 'to a different calendar on the SAME account'. It also names the create-then-delete workaround, which separates it from siblings like create_event/delete_event without the agent needing to open those schemas.

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

Usage Guidelines5/5

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

Gives an explicit when-not condition (cross-account moves are impossible) and the exact alternative procedure (create on target, delete original). An agent hitting a cross-account request is routed unambiguously.

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