Skip to main content
Glama

create_event

Create a planning event by providing a title and start time, with optional end time, location, description, and tags for scheduling meetings, milestones, or deadlines.

Instructions

Create a new planning event (e.g. a meeting, milestone, deadline).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoOptional tags
titleYesEvent title
end_timeNoISO 8601 end datetime
locationNoPhysical or virtual location (optional)
start_timeYesISO 8601 start datetime, e.g. 2026-04-01T09:00:00Z
descriptionNoWhat this event is about

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of disclosing behavior. It reveals that the tool creates a new event, but does not mention side effects, validation rules, required permissions, conflict handling, idempotency, or what happens on success.

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 a single, front-loaded sentence with zero filler. The parenthetical examples add useful context without bloat, making it appropriately concise and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and the schema fully documents parameters and required fields, so an agent can construct a valid call. However, there is no output schema and the description does not explain what the API returns or how to retrieve the newly created event, leaving a notable gap.

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 the schema already documents all six parameters including types and formats. The description adds no parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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?

The description clearly states the tool's action ('Create') and resource ('planning event') with helpful examples like meeting, milestone, and deadline. It distinguishes from the sibling create_action by resource type, though it does not explicitly contrast them.

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?

The description implies when to use the tool — when you need to create a planning event — but provides no explicit guidance about when not to use it or how it compares to create_action. Sibling tool names hint at alternatives, but the description itself does not help route the agent.

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