Skip to main content
Glama

create_event

Create a calendar event with a required start time and optional end time, description, and tags. Ideal for meetings and appointments.

Instructions

Create a calendar event with a fixed start time (and optional end time). Use this for time-bound items such as meetings or appointments; use create_todo for deadline-style tasks without a specific time, and create_memo for free-form notes. Returns the created event with its assigned UUID. Example: {"title":"Dentist","start_at":"2026-06-15T13:00:00+09:00","end_at":"2026-06-15T14:00:00+09:00","tags":["health"]} → {"id":"...","title":"Dentist",...}. Side effects: writes a new record on each call — calling twice creates two events. Not idempotent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
all_dayNoIf true, the event spans the whole day(s); the time portion of start_at / end_at is ignored.
descriptionNoLonger description or notes for the event (optional).
end_atNoEnd datetime in ISO 8601 with timezone offset (optional). Must be after start_at.
start_atYesStart datetime in ISO 8601 with timezone offset, e.g. "2026-06-15T13:00:00+09:00". Required.
tagsNoTag names to attach (optional).
titleYesEvent title. Required.
Behavior5/5

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

No annotations provided, so description carries full burden. Clearly states side effects ('writes a new record on each call — calling twice creates two events. Not idempotent.') and returns created event with UUID. No contradictions.

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 paragraphs: first sentence states purpose, then usage guidelines, then example, then side effects. No wasted words, well front-loaded.

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

Completeness5/5

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

With 6 parameters, 2 required, no output schema, and no annotations, description covers purpose, usage differentiation, side effects, and return value (UUID + example). Adequately complete for agent decision-making.

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?

Schema coverage is 100%, so schema already describes parameters. Description adds value with a concrete example showing parameter format and combination, but otherwise does not elaborate beyond schema. Minor added enrichment.

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 'Create a calendar event with a fixed start time (and optional end time)' and distinguishes from create_todo and create_memo by specifying use cases. Clear verb+resource+scope.

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?

Explicitly says when to use this tool ('time-bound items such as meetings or appointments') and when not, naming alternatives create_todo and create_memo with their purposes.

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

Install Server

Other Tools

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/krtw00/konbu'

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