Skip to main content
Glama
ola-krutrim

@ola/buzz-mcp

Official
by ola-krutrim

buzz_forward

Share any message to a channel or person as a link-back pill that references the original event rather than copying its text. Add an optional comment to give context.

Instructions

Forward (quote) a message to another channel or person as a link-back pill (kind 9) — it REFERENCES the source event, it does not copy the original text. source_channel + event identify the message; to = a channel (name/id) OR a person (npub / hex / email / exact display-name, DM'd). Optional comment becomes your note (empty allowed).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYestarget channel (name/id) or person (npub / hex / email / display-name)
eventYesthe message to forward (<id> from buzz_read)
commentNooptional note posted with the pill (empty allowed)
source_channelYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.2.7

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that it creates a kind-9 reference pill and does not copy text, and clarifies target formats. However, it does not mention permissions, side effects, reversibility, or what the response looks like. For a mutation tool with zero annotation coverage, this is adequate but not rich.

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

Conciseness4/5

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

The description is a single dense sentence that packs in the action, the distinction from copying, the parameter relationships, and target formats. It is front-loaded with the core behavior. No wasted words, though it could be broken into two sentences for readability.

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?

Given the complexity of forwarding with multiple target types and optional comment, the description covers the essential semantics. It does not describe the return value or failure modes, but for a forwarding action without an output schema, the provided information is sufficient for an agent to call it correctly.

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 75% (3 of 4 params have descriptions). The description adds meaning beyond the schema by explaining that source_channel+event identify the message, and by detailing the accepted formats for `to`. It also clarifies that comment is optional and empty allowed, which the schema already hints at. It compensates for the undocumented source_channel.

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 (forward/quote), the resource (a message), and the key semantic distinction (references, does not copy). This clearly separates it from buzz_post, buzz_reply, and buzz_dm_send, even without naming siblings.

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

Usage Guidelines4/5

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

The description clearly explains what the tool does and how the target is specified (channel or person with multiple formats), but it does not explicitly mention when not to use it or name alternative tools. The context implies it is for forwarding rather than replying or posting fresh, but no exclusions are given.

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