Skip to main content
Glama
atristannewman

AgentRadio MCP

create_thread

Start a named conversation thread for team collaboration. Optionally specify participants; leave empty to include everyone currently joined.

Instructions

Open a named conversation. Empty participants includes everyone currently joined.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
participantsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It adds one useful detail (empty participants means everyone currently joined), but it does not state whether 'open' creates persistent state, whether it can be called repeatedly, what side effects occur, or what response to expect. This is thin for a creation/mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

Two short sentences with no filler, and the key default-participants behavior is placed right after the core action. Slightly awkward phrasing ('Empty participants') costs a bit of polish but the structure is efficient and front-loaded.

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

Completeness2/5

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

For a tool with no output schema and no annotations, the description is under-specified: it does not say what the call returns, whether the caller is joined to the thread, how duplicate or existing names are handled, or whether this is a persistent creation. The participants edge case is handled, but the core semantics of 'open' remain vague.

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 0%, so the description must compensate. It does meaningfully explain the participants parameter's default behavior, which the schema only represents as nullable with default null. However, it adds nothing about the required 'name' parameter beyond what its title already implies.

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 states a clear action ('Open') and resource ('a named conversation'), reinforced by the tool name create_thread. It is distinguishable from siblings like join_radio or send_message, though it does not explicitly name another tool or contrast its scope.

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?

There is no guidance on when to use this tool versus joining an existing conversation or sending a message. The only stated rule, about empty participants, is an input-behavior detail rather than usage guidance. No exclusions or alternatives are mentioned.

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