Skip to main content
Glama

sync-day

Create event

create_event

Create a sync.day availability poll and get its share link. Candidate days run from startDate to endDate (inclusive; or give days instead). Each day offers candidate START times from hourFrom, every startStepMinutes, as long as start + durationMinutes <= hourTo. Returns slug, public url (share this), adminUrl and adminKey (keep private; needed for update_event / remove_participant). Example: 周六周日下午聚餐 3 小时 -> {title:'周末聚餐', startDate:'2026-09-05', endDate:'2026-09-06', hourFrom:13, hourTo:18, durationMinutes:180, startStepMinutes:60}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoNumber of consecutive days from startDate (1-21); alternative to endDate.
titleYesEvent name, max 60 chars. e.g. 周末聚餐, Team sync
hourToYesEnd of each day's window, exclusive (1-24), must be > hourFrom. e.g. 22
endDateNoLast candidate day, inclusive, YYYY-MM-DD (same as startDate for a single day; at most 21 days). Give this or days; endDate wins when both are set.
hourFromYesEarliest hour of each day (0-23). e.g. 9
questionNoOptional prompt shown to participants, max 200 chars. e.g. 哪天晚上有空?
startDateYesFirst candidate day, YYYY-MM-DD. e.g. 2026-09-05
durationMinutesYesEvent length in minutes. One of 30, 60, 90, 120, 180, 240, 480.
startStepMinutesNoGap between candidate start times in minutes: 30 or 60 (default 60).

Schema Changelog

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

  1. First observed

TDQS

A3.8/5.0
Behavior5/5

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

Annotations only convey generic flags (readOnly false, idempotent false, etc.), so the description carries the behavioral burden. It discloses the creation side effect, the date/time generation rules, the returned fields (slug, public url, adminUrl, adminKey), and the important security instruction to keep adminKey private. This goes well beyond the structured annotation data and has no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but efficient: purpose first, then the generation rule, then return values, then an illustrative example. The 'days' aside is slightly ambiguous and adds some confusion, but every major sentence earns its place and the structure is front-loaded.

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?

Since there is no output schema, describing returns (slug, public url, adminUrl, adminKey) is essential and is done clearly. It also covers the core input semantics and example scale. It would be more complete with an explicit clarification of the optional `days` parameter and the endDate-vs-days precedence, but overall it equips an agent to call it correctly.

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 the baseline is 3, but the description adds a conceptual algorithm and a concrete example mapping natural language to parameters (title, startDate, endDate, hourFrom, hourTo, durationMinutes, startStepMinutes). The weakness is that the 'or give days instead' option is left vague and does not clarify the confusing `days` property in the schema, so it does not fully resolve every parameter.

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+resource: creates a sync.day availability poll and returns the share link. The description also explains how candidate days/times are generated, which makes the purpose concrete. It does not explicitly distinguish itself from siblings like decide_time or update_event, so it stops short of a 5.

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?

No explicit guidance on when to use create_event versus alternatives. The only related-tool hint is that adminKey is needed later for update_event / remove_participant, which is forward-looking usage advice, not tool-selection guidance. An agent must infer when to use this tool from the name/title.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: creation, parsing, reading, updating, deciding, submitting availability, voting, and participant removal. The closest pair, submit_availability and vote_time, are separated by their inputs (startOptions vs voteOptions) and lifecycle stage.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern, e.g. create_event, get_event, update_event, vote_time, decide_time. Minor compound names like parse_event_text and remove_participant still fit the same predictable convention.

Tool Count5/5

Eight tools is well-scoped for an availability-polling server. Each tool covers a distinct part of the workflow without redundancy or excessive fragmentation.

Completeness4/5

The core lifecycle is covered: create, parse, read, update, submit availability, vote, decide, and remove participants. The only notable gap is no explicit delete/cancel event tool, but this does not break the main scheduling workflow.

Resources