Skip to main content
Glama
xiuxiuxius

飞书日历 MCP 服务器

by xiuxiuxius

feishu_get_calendar

Retrieve detailed information for a specified Feishu calendar by providing its calendar ID. Use it to look up calendar metadata when you need calendar details.

Instructions

获取指定飞书日历的详细信息,需要提供日历 ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
calendar_idYes日历 ID (Calendar ID)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.2

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It only implies a read operation via '获取' and says nothing about return shape, permissions, or error behavior for an invalid ID — thin for a no-annotation tool.

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?

A single short sentence with the purpose front-loaded and no filler. Efficient, though it could carry a bit more useful context without bloat.

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?

For a simple single-resource read with 100% schema coverage and no output schema, the description is minimally sufficient. It omits any hint of what the returned detail contains or how to obtain a valid calendar ID.

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?

Only one parameter, and schema description coverage is 100% with the schema documenting 'calendar_id' itself. The description merely restates the requirement ('需要提供日历 ID') without adding format or sourcing detail, so baseline 3 applies.

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 ('获取指定飞书日历的详细信息'), clearly indicating a single-calendar fetch. It does not explicitly name or differentiate from siblings like feishu_get_calendar_list, though '指定' implies one calendar.

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?

Provides the prerequisite ('需要提供日历 ID'), which is basic usage context. However, it gives no guidance on when to use this versus feishu_get_calendar_list or other sibling tools, leaving selection to inference.

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