Skip to main content
Glama
AnswerDotAI

cordslite-mcp

Official
by AnswerDotAI

dm_messages

Retrieves messages from a DM or group DM, ordered oldest first. Provide a channel_id from list_dms to paginate with before/after IDs and limit up to 100 results.

Instructions

The latest messages in a DM or group DM, oldest first; needs the user token

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
afterNoOnly messages after this message id
limitNoMessages to return, at most 100
beforeNoOnly messages before this message id
channel_idYesDM channel id, from `list_dms`

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral burden. It usefully discloses the ordering (oldest first) and authentication requirement (user token), but it does not mention pagination behavior, return format, or whether the operation is read-only. This 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?

A single sentence efficiently conveys the core purpose, ordering, and authentication requirement with no wasted words. The most important information is front-loaded.

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?

Given the low complexity and full schema coverage, the description is mostly complete for an agent to invoke the tool correctly. It lacks an output schema, so return fields are not described, but for a simple message-listing tool the provided context is sufficient.

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 parameters are already well documented in the schema. The description adds no extra parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 identifies the resource (messages), scope (DM or group DM), and ordering (oldest first), which makes the tool's purpose clear. It distinguishes from guild-focused siblings like channel_messages by specifying DMs, though it lacks an explicit verb like 'gets' or 'lists'.

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 clearly states when to use it: to get the latest messages in a DM/group DM. It also adds the important prerequisite that a user token is needed. However, it does not explicitly mention alternatives or when not to use it, such as pointing to channel_messages for guild channels.

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