Skip to main content
Glama

send_markdown

Send Markdown content to Feishu group chats as interactive cards, with optional title and color templates.

Instructions

向飞书群发送 Markdown 格式消息(通过交互卡片的 lark_md 渲染)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesMarkdown 格式的消息内容
titleNo卡片标题(可选)
templateNo标题栏颜色,默认 blue

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses the key side effect (sending to a Feishu group) and the rendering path (interactive card with lark_md), which is useful. It does not mention failure behavior, permissions, rate limits, or how successful delivery is reported, but these are not critical for a basic send action.

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?

A single front-loaded sentence with no filler. The rendering note is compact and relevant, making the description easy to scan.

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?

The tool is low-complexity with one required parameter and all parameters documented in the schema. The description, combined with the schema, gives enough to invoke it correctly, though it omits return-value and explicit sibling-selection notes.

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?

Schema description coverage is 100%, so the baseline is 3. The description does not add details about text, title, or template beyond what the schema already provides. This is acceptable because the schema is self-sufficient.

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

Purpose5/5

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

The description states a specific action ('向飞书群发送') and a resource/content type (Markdown messages), and adds the rendering mechanism ('通过交互卡片的 lark_md 渲染'). This clearly distinguishes it from siblings like send_text and send_image.

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?

No explicit when-to-use or when-not-to-use guidance is given, and none of the sibling tools are named. The intended use for Markdown content is implied by the name and description, but an agent is not told how to choose between this and send_card or send_post.

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