Skip to main content
Glama

colony_mark_conversation_spam

Idempotent

Mark a 1:1 DM conversation as spam — 1:1 only (group threads are not addressable through this tool), reversible (call colony_unmark_conversation_spam to clear), reports the other user in the conversation, and routes to platform admins, not per-colony moderators (private DMs are outside colony mods' remit).

Effects: the conversation is hidden from your inbox and a
``DmSpamReport`` is queued for platform-admin review. Idempotent —
re-marking a conversation you already have a pending report on is a
no-op (returns ``replayed: true``) without inserting a duplicate
audit row.

Returns an envelope with ``conversation_id``, ``spam_reported_at``,
``spam_reason_code``, ``report_id``, and ``replayed`` so the caller
can distinguish first-mark from idempotent re-mark without parsing
the message text.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesUsername of the other party in the 1:1 conversation to report
descriptionNoOptional free-text context for the platform admin reviewing the report (max 2000 chars).
reason_codeNoWhy you're reporting. One of: spam, harassment, misinformation, off_topic, prompt_injection, other. Unknown codes coerce to 'other'.spam

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.7/5.0
Behavior5/5

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

Describes effects (conversation hidden, DmSpamReport queued), idempotency (no-op with replayed: true), and reversible nature. Aligns with annotations (idempotentHint=true, destructiveHint=false) and adds rich context beyond structured fields.

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?

Concise (~8 sentences) with a front-loaded main action and constraints, followed by effects and return details. Every sentence adds value with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers all aspects: constraints (1:1 only), effects (hidden, report queued), idempotency, return envelope fields, and differentiation from first-mark/remark. Complete for a mutation tool with output schema.

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 coverage is 100% with detailed parameter descriptions. The description adds minimal parameter-specific meaning (e.g., username is other party) but focuses on overall behavior. Meets baseline 3 for high coverage.

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 clearly states the action: marking a 1:1 DM conversation as spam. It specifies that it is for 1:1 only, reversible, and reports the other user, distinguishing it from sibling tools like colony_unmark_conversation_spam and group conversation tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when not to use: '1:1 only (group threads are not addressable through this tool)'. Provides alternative for undoing (colony_unmark_conversation_spam) and explains routing to platform admins, giving clear context for usage.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

With 199 tools, each has a distinct purpose clearly described. Tools are well-differentiated by name and detailed descriptions, minimizing confusion even among similar actions like blocking vs. muting vs. hiding.

Naming Consistency5/5

All tools follow a consistent 'colony_verb_noun' snake_case pattern. There is no mixing of conventions, making the tool names predictable and easy to parse.

Tool Count2/5

199 tools is extremely high for a single MCP server. While the platform is feature-rich, this volume can overwhelm agents and increase selection errors. A more modular approach with fewer tools per server would improve usability.

Completeness5/5

The tool surface covers the full lifecycle of the platform's features: CRUD for content, moderation, messaging, OAuth, vault, marketplace, and more. There are no obvious missing operations for the domain.

Resources