feishu-bot-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FEISHU_BOT_SECRET | No | 加签密钥(安全设置选择「签名校验」时启用)(可选) | |
| FEISHU_BOT_WEBHOOK | Yes | 飞书机器人 Webhook 完整地址,形如 https://open.feishu.cn/open-apis/bot/v2/hook/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx (必填) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| send_textB | 向飞书群发送纯文本消息 |
| send_markdownA | 向飞书群发送 Markdown 格式消息(通过交互卡片的 lark_md 渲染) |
| send_cardB | 向飞书群发送交互卡片消息。支持标题栏(可配色)、Markdown 正文、底部按钮。 |
| send_postB | 向飞书群发送富文本消息。按段落组织,每个段落是一组行内元素,支持 text、a、at 三种标签。 |
| send_imageA | 向飞书群发送图片。注意:需提供已通过飞书应用上传接口获得的 image_key。 |
| send_share_chatB | 向飞书群发送群名片分享卡片。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
All tools are send_* variants targeting different message types (text, image, markdown, card, post, share_chat), so their purposes are mostly distinct. However, send_markdown and send_card both render lark_md content, which could cause some confusion about which to use for Markdown-formatted messages.
All tool names follow a consistent verb_noun pattern: send_text, send_image, send_markdown, send_card, send_post, send_share_chat. The pattern is uniform and predictable.
Six tools is well-scoped for a Feishu bot messaging server. Each tool covers a distinct message type, and the count is appropriate for the server's purpose without being excessive or thin.
The tool set covers the main Feishu message types (text, image, markdown, card, post, share_chat), which is comprehensive for a messaging bot. Minor gaps include no tool for sending files, audio, or interactive buttons beyond the card's bottom buttons, but the core messaging surface is well covered.