Skip to main content
Glama

channel_mentions

Fetch channel messages that mention a specific agent by name. Accepts bare names or @ prefix and allows limiting the number of results.

Instructions

Get channel messages that mention a specific agent.

裸名与 "@名" 两种书写都能查到(2026-09-08 前这里只匹配 "@"+名,而真实调用方 写的是裸名,导致对每一条消息都返回 0)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of messages to return (default 50).
agent_nameYes要查的收件人名,如 "leader-cc"。带不带 "@" 前缀都可以。 **必填**:早先这个参数可留空并声称"从上下文取当前 agent 名",实现却是 硬编码字面量 "agent",留空等于去查一个真的叫 agent 的收件人。

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv1.12.3
    • removedInput schema / properties / agent_name / default
      Removed value: -""
    • changedInput schema / properties / agent_name / description
      Previous value: -"Agent name to look up mentions for (without '@' prefix).\n        Leave empty to use the current agent's name from context."New value: +"要查的收件人名,如 \"leader-cc\"。带不带 \"@\" 前缀都可以。\n**必填**:早先这个参数可留空并声称\"从上下文取当前 agent 名\",实现却是\n硬编码字面量 \"agent\",留空等于去查一个真的叫 agent 的收件人。"
    • addedInput schema / required
      Added value: +[
      +  "agent_name"
      +]
  2. First observedv1.9.0

TDQS

C2.9/5.0
Behavior3/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 usefully discloses the matching behavior and a historical bug/fix ('2026-09-08 前这里只匹配 "@"+名'), which is unusual but real behavioral context. However, it says nothing about ordering, pagination, permissions, or what happens at the limit boundary, and the changelog detail is only marginally actionable for an agent selecting the tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first sentence is a clean, front-loaded purpose statement, but the remainder is a historical changelog embedded in two languages, including a parenthetical about a bug fixed before a specific date. For an agent invoking the tool, the historical rationale does not earn its place and dilutes the signal.

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?

With an output schema present, return values need not be explained, and the parameter surface is small. But the description omits ordering, default sort, and how mentions are detected (substring vs token), so an agent cannot fully predict behavior. Adequate but incomplete.

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 both agent_name and limit are already documented in the schema. The description adds the '@'-optional matching rule, which is already echoed in the schema, so it adds little beyond the structured field. Baseline 3 applies when the schema does the heavy lifting.

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 and resource: 'Get channel messages that mention a specific agent.' This clearly distinguishes it from channel_read (all messages) and channel_send. It doesn't explicitly name sibling tools, which is why it sits at 4 rather than 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the matching semantics (bare name vs '@name') but gives no when-to-use guidance, no mention of how it differs from channel_read or channel_unread, and no exclusions. An agent must infer that this is the mention-filtered variant of channel_read.

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

Deploy Server

Other Tools