Skip to main content
Glama

open_dm

Opens a direct message channel in Slack for one or more specified users using their user IDs.

Instructions

Open a direct message channel with one or more Slack users.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usersYesList of user IDs to open a DM with

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

B3.3/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It does not state whether opening a DM is idempotent, creates a new channel or retrieves an existing one, requires permissions, or returns a channel ID. This is a meaningful gap for a mutation-like operation.

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 a single front-loaded sentence with no filler. Every word contributes meaning and there is no redundant repetition of the schema.

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 with one well-documented parameter, making the description minimally viable. However, with no output schema and no annotations, the description leaves out the return value and behavioral consequences, so it is adequate but not complete.

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 the users parameter as a list of user IDs. The description adds the phrase 'one or more' but provides no additional semantic detail about format, validation, or behavior with invalid IDs.

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 ('open') and resource ('direct message channel') and specifies the target ('one or more Slack users'). It clearly distinguishes the tool from siblings like send_message or list_users.

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 guidance is provided about when to use this tool versus alternatives, such as opening a DM before sending messages or how it differs from listing users. The agent must infer usage from the tool name and description.

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