Skip to main content
Glama
stackia
by stackia

Reply to Channel Message

reply_to_channel_message

Reply to a specific message in a Microsoft Teams channel using text or markdown, with @mentions, image attachments, and importance levels.

Instructions

Reply to a specific message in a channel. Supports text and markdown formatting, mentions, and importance levels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formatNoMessage format (text or markdown)
teamIdYesTeam ID
messageYesReply content
imageUrlNoURL of an image to attach to the reply
mentionsNoArray of @mentions to include in the reply
tenantIdNoTarget tenant ID from list_tenants. Omit only when a default is configured or exactly one tenant is connected. Resource IDs belong to this tenant.
channelIdYesChannel ID
imageDataNoBase64 encoded image data to attach
messageIdYesMessage ID to reply to
importanceNoMessage importance
imageFileNameNoName for the attached image file
imageContentTypeNoMIME type of the image (e.g., 'image/jpeg', 'image/png')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=false, so the basic behavioral profile is covered. The description adds that text/markdown formatting, mentions, and importance levels are supported, but it does not disclose side effects, send behavior, or what the reply operation produces. There is no contradiction with the annotations.

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, front-loaded sentence with no filler. It states the core action first and then summarizes key supported capabilities. It could add more structured guidance, but as written it is appropriately concise.

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?

The full schema and annotations compensate for many gaps, but this is a 12-parameter write operation with image attachment options and no output schema. The description does not explain when to use this tool versus send_channel_message, nor does it clarify workflow-level concerns like reply threading or the expected result. It is adequate but leaves selection-related context to the agent to infer.

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 schema already documents all 12 parameters. The description adds a small amount of grouping by mentioning formatting, mentions, and importance levels, but it does not meaningfully extend what the parameter descriptions already provide.

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 opens with a clear verb and target: 'Reply to a specific message in a channel.' It unambiguously identifies the operation as a reply to an existing message, which distinguishes it from sending, updating, deleting, or reacting to channel messages.

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?

No usage guidance is provided. The description never states when to choose this tool over send_channel_message or get_channel_message_replies, and it does not mention any exclusions, prerequisites, or conditions that would steer an agent toward an alternative.

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