Skip to main content
Glama
stackia
by stackia

Send Chat Message

send_chat_message

Send messages to any Teams chat conversation, with support for markdown formatting, @mentions, and urgency levels.

Instructions

Send a message to a specific chat conversation. Supports text and markdown formatting, mentions, and importance levels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chatIdYesChat ID
formatNoMessage format (text or markdown)
messageYesMessage content
mentionsNoArray of @mentions to include in the message
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.
importanceNoMessage importance

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already convey that this is a non-read-only, non-idempotent, non-destructive operation, so the safety profile is established. The description adds no deeper behavioral context such as delivery behavior or side effects, but it does not contradict 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.

Conciseness5/5

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

The description is two sentences with the core action front-loaded and no filler. Every clause either identifies the target or summarizes supported options, making it easy to scan.

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 tool is simple, and the schema covers all parameters, but there is no output schema and the description does not explain what the call returns or how to obtain chatId. It also lacks the usage differentiation needed to guide an agent among similar chat- and channel-message tools.

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 every parameter is already documented structurally. The description restates the format, mentions, and importance capabilities at a high level, providing a useful summary but no additional semantics beyond the schema.

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?

The description uses a specific verb ('Send'), a clear resource ('message'), and a target ('specific chat conversation'). It is unambiguous about the action, though it does not explicitly name or differentiate the sibling tool send_channel_message, leaving distinction somewhat implicit.

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 does not state when to use this tool versus alternatives like send_channel_message or reply_to_channel_message. It gives no prerequisites, exclusions, or explicit routing guidance for an agent deciding among sibling tools.

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