Skip to main content
Glama

发送合并转发

send_group_forward_msg

Send multiple node-based messages to a QQ group as a combined forward (chat history). Construct each node with uin, nickname, and content to assemble the forward.

Instructions

以合并转发(聊天记录)形式向群发送若干条由 send_forward_node 构建的节点消息。nodes 为 node 消息段数组,每节点 {type:'node',data:{uin,nickname,content}}。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesnode 消息段数组
group_idYes目标群号

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate this is a mutating, non-idempotent operation, and the description does not contradict them. It adds useful context about the merged-forward format and node structure, but it does not disclose permission requirements, failure behavior, or side effects beyond sending.

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?

Two compact sentences deliver the operation, the mode, and the essential payload structure without filler. The core action is front-loaded, and the parameter detail is logically placed second.

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?

For a two-parameter tool with no output schema, the description covers the essential call shape and the non-obvious node structure well. Minor omissions, such as explicitly tying message to the send_forward_node workflow or noting group membership requirements, are not critical at this complexity level.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so a baseline of 3 applies. The description adds real value by specifying the exact node shape {type:'node',data:{uin,nickname,content}}, which the schema's generic array items do not provide. This materially helps an agent construct the message parameter correctly.

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 names a specific action (send merged-forward messages to a group), identifies the payload type (node messages built by send_forward_node), and makes the tool's purpose distinct from ordinary group message sending. The resource and operation are both clear.

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?

The workflow is implied: build node messages with send_forward_node, then send them as a merged forward. However, the description does not explicitly contrast this with send_group_msg or send_msg, nor does it state when this tool should be preferred over alternatives.

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