Skip to main content
Glama
xiuxiuxius

飞书日历 MCP 服务器

by xiuxiuxius

feishu_update_event

Update an existing Feishu calendar event by ID to modify its title, start/end times, location, or description. Use it when you need to reschedule or edit event details.

Instructions

更新飞书日程

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryNo日程标题 (Event title)
end_timeNo结束时间,Unix 时间戳,单位毫秒 (End time timestamp in ms)
event_idYes日程 ID (Event ID)
locationNo地点 (Location)
start_timeNo开始时间,Unix 时间戳,单位毫秒 (Start time timestamp in ms)
calendar_idYes日历 ID (Calendar ID)
descriptionNo日程描述 (Event description)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.2

TDQS

D1.9/5.0
Behavior1/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 behavioral disclosure, yet it says nothing about permissions required, whether updates are partial or full, what happens on missing events, or any response behavior. It is a mutation tool with zero behavioral context.

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

Conciseness2/5

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

The description is extremely short and lacks structure, but this is under-specification rather than effective conciseness. It does not front-load any useful information beyond the bare operation name.

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

Completeness1/5

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

For a 7-parameter mutation tool with no annotations and no output schema, the description is completely inadequate. It omits any discussion of usage, behavior, or parameter nuances, leaving an agent without sufficient context to invoke it correctly.

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?

The input schema has 100% description coverage for all 7 parameters, so the schema already documents meanings. The description adds no additional parameter semantics, making the baseline score of 3 appropriate.

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

Purpose2/5

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

The description '更新飞书日程' is essentially a Chinese translation of the tool name 'feishu_update_event', making it a tautology that restates the name rather than elaborating on what the tool does. It gives a verb and resource but adds no specificity beyond the name itself.

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?

There is no guidance on when to use this tool versus alternatives like feishu_create_event or feishu_update_calendar. The description merely states the operation without any context about prerequisites or appropriate scenarios.

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