Skip to main content
Glama

Calendar

ms_calendar
Read-onlyIdempotent

Fetch Microsoft 365 calendar events for today or a date range, list calendars, or drill into a specific event via the Graph API.

Instructions

Fetch the user's Microsoft 365 calendar events. Defaults to today if no date params given. Can also list calendars or drill down into a specific event.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoEnd of date range (ISO 8601)
dateNoFetch events for a specific date (YYYY-MM-DD)
startNoStart of date range (ISO 8601)
compactNoSummarise each event to title, time, location, organiser and attendee count, omitting the body. Useful for scanning a day.
event_idNoEvent ID for full detail drill-down
calendarsNoList all calendars

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint and non-destructive, so the safety profile is covered. The description adds the default date-range behavior, which is genuine context, but says nothing about auth requirements, pagination, or coverage limits of the fetch.

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?

Three tight sentences, front-loaded with the core action, then the default behavior, then the alternate modes. No filler and every clause carries information.

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?

With no output schema, the description should carry more of the return-shape burden, but it names the available modes and the compact summarization behavior. It leaves the relationship between 'date' and the 'start'/'end' range pair implicit, a minor gap for a 6-param multi-mode tool.

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%, so every parameter is already documented in the schema (including what 'compact' omits). The description only adds that date params default to today, which is minor meta-context; baseline 3 is correct.

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

Purpose4/5

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

States a specific verb and resource ('Fetch the user's Microsoft 365 calendar events') and enumerates two secondary modes (list calendars, drill into an event). It is clear against generic tool names, but it never names the calendar-adjacent siblings (ms_schedule) it could be confused with, so it stops short of full sibling differentiation.

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?

Gives one useful usage rule ('Defaults to today if no date params given') and hints at alternate modes, which is more than nothing. However, it never states when to prefer this tool over ms_schedule or ms_brief, nor when to use which mode, leaving usage to inference.

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