Skip to main content
Glama
xiuxiuxius

飞书日历 MCP 服务器

by xiuxiuxius

feishu_get_calendar_list

List all calendars in Feishu so users can view or check which calendars they have. Use when users ask to query, view, or see their calendars.

Instructions

查询所有飞书日历。当用户说"查询日历"、"查看日历"、"我的日历"、"有哪些日历"等类似话语时使用。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_sizeNo每页数量 (Page size), 默认 50
page_tokenNo分页令牌 (Page token for pagination)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.2

TDQS

A3.7/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 behavioral disclosure. It does not mention that the operation is read-only or safe, nor does it describe pagination behavior, rate limits, or what the returned data includes. It only restates the purpose and usage triggers.

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 two concise sentences: the first states the purpose, the second gives usage examples. It is front-loaded with the core action and has no unnecessary words.

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 list tool with well-documented schema parameters and no output schema, the description is adequate but lacks behavioral context such as read-only nature and pagination handling. It covers purpose and usage but leaves gaps that an agent might need to infer safely.

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 schema fully documents both parameters (page_size and page_token) with descriptions and default values. The description adds no additional parameter details, so baseline 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 it queries all Feishu calendars, giving a specific verb and resource. It distinguishes itself from siblings conceptually by referring to all calendars, though it does not explicitly contrast with feishu_get_calendar (single calendar).

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?

It explicitly states when to use the tool by listing natural user phrases like '查询日历', '查看日历', '我的日历', '有哪些日历'. This provides clear triggers for invocation.

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