Skip to main content
Glama

Post to Channel

post_to_channel

Post a message to a team channel you belong to, visible to all members, and receive the posted message.

Instructions

Post a message to a team Comms channel you belong to, as the connected member, and return the posted message. It appears live for teammates and is org-visible — keep it work-relevant. Resolve channel_id via list_channels; you can only post to channels you're a member of. Both channel_id and body are required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesMessage text, visible to all channel members (required).
channel_idYesChannel id to post into, from list_channels (required).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.14
  2. Removedv0.1.12
  3. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations only indicate non-read-only, non-idempotent, and non-destructive. The description adds meaningful behavioral context by disclosing visibility ('appears live for teammates and is org-visible'), identity ('as the connected member'), and permission constraints ('only post to channels you're a member of'). This goes beyond the annotation booleans.

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?

Three compact sentences with the core action first, followed by visibility caveat and usage prerequisite. Every sentence contributes necessary information with no redundancy or filler.

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 simple two-parameter tool with full schema coverage and no output schema, the description covers the action, audience, prerequisite, and constraints. It omits error handling or rate-limit specifics, but those are not critical for a basic post operation. The description is sufficiently complete for an agent to use this tool effectively.

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?

The input schema already describes both parameters (100% coverage), so baseline is 3. The description adds valuable workflow guidance: channel_id must be resolved via list_channels and is limited by membership. This clarifies how to obtain and validate the parameter, which is beyond the schema.

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 uses a specific verb ('Post'), a clear resource ('a team Comms channel'), and a scope ('you belong to, as the connected member'). It also states the return value ('return the posted message'), making it distinct from siblings like read_channel and reply_in_channel.

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 provides a clear prerequisite ('Resolve channel_id via list_channels') and a membership constraint ('you can only post to channels you're a member of'). It implies when to use this tool (new post vs. reading or replying), but does not explicitly name alternatives or state when not to use it.

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