Skip to main content
Glama

runrunit_discord_send_message

Send a Discord message to notify teams about Runrun.it task execution history, including optional task and project context for clearer updates.

Instructions

Send a message to a Discord channel. Use for execution history or notifications. Requires BOT_RUNRUNIT_REPORT and channel_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesMessage text (max 2000 characters)
task_idNoOptional Runrun.it task ID for context
channel_idYesDiscord channel ID
project_idNoOptional project ID for context

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.1

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden and does disclose an auth dependency ('Requires BOT_RUNRUNIT_REPORT and channel_id'). However, it does not mention side effects beyond sending, failure modes, or response behavior, so coverage 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.

Conciseness5/5

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

Two short sentences front-load the action and use cases, then state the requirements. Every sentence adds value and there is no redundant or vague wording.

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 4-parameter tool with no output schema, the description provides purpose, use cases, and required credentials. It does not explain return values or failure behavior, but an agent has enough to invoke it correctly.

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 four parameters. The description only repeats channel_id and adds no new parameter semantics 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 states a specific action ('Send a message to a Discord channel') with a clear resource and intended use cases ('execution history or notifications'). This distinguishes it from sibling Discord channel-management tools like runrunit_discord_create_channel and runrunit_discord_list_channels.

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?

It explicitly says this tool is for sending messages for execution history or notifications, giving an agent clear context for when to select it. It does not name alternatives or state when not to use it, but the use-case framing is sufficient for this simple tool.

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