Skip to main content
Glama

start_collaboration

Launch a multi-agent discussion session to explore a topic, with agents responding in turns and building on each other's ideas. Returns a collaboration ID for tracking.

Instructions

Start a collaboration session where multiple agents discuss a topic with each other. Returns a collaboration ID. Agents take turns responding, building on each other's ideas.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoModel id. Defaults: claude-opus-5 (anthropic), gpt-5.6-luna (openai), zai-org/GLM-5.3 (together), qwen/qwen3-235b-a22b-instruct-2507 (replicate), qwen3:14b (ollama), default (openai_compatible). Anthropic also accepts the aliases "opus" (claude-opus-5) and "sonnet" (claude-sonnet-5). Replicate accepts owner/name, owner/name:version, or a https://replicate.com/owner/name URL.
topicYesThe topic or question for agents to discuss.
agentsYesArray of agent identifiers. Examples: ["cfo", "fpa"], ["product", "engineering", "design"]
contextNoOptional background context or data to share with all agents.
base_urlNoOnly with provider "openai_compatible": base URL of an OpenAI-compatible /v1 endpoint (e.g. http://localhost:1234/v1). Overrides OPENAI_COMPATIBLE_BASE_URL for this session/call. OPENAI_COMPATIBLE_API_KEY, if set, is sent as the bearer token to whichever base URL is used.
providerNoLLM provider to use. Default: anthropic. Options: anthropic; openai; together (Together AI — any Together model id, e.g. zai-org/GLM-5.3 or Qwen/...); replicate (owner/name, owner/name:version, or https://replicate.com/owner/name); ollama (local, only when reachable); openai_compatible (any /v1/chat/completions server — set OPENAI_COMPATIBLE_BASE_URL or pass base_url).
max_roundsNoMaximum rounds of discussion (each round = each agent speaks once). Default: 5
auto_run_roundsNoIf set, automatically run this many rounds before returning. Otherwise returns after first agent speaks.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Without annotations, the description carries the full behavioral burden. It usefully discloses that the tool returns a collaboration ID and that agents take turns building on each other's ideas, but it omits notable behaviors such as the default one-round return behavior, persistence of the session, or side effects beyond starting the collaboration.

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, information-dense sentences with no filler. The core action and return value are front-loaded, followed by a concise behavioral note about turn-taking.

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 rich 8-parameter schema with full coverage, the description adequately covers the core behavior and return value. It could go further by hinting that subsequent collaboration-management tools like continue_collaboration or nudge_collaboration operate on the returned ID, but this is not critical for a first call.

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 input schema documents all parameters. The tool description adds no parameter-level nuance beyond the schema, matching the baseline of 3.

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 clearly identifies the action (starting a collaboration session), the resource (a multi-agent discussion), and the outcome (a collaboration ID). However, it does not explicitly differentiate itself from sibling tools like start_meeting or chat_completion, so it stops short of a 5.

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

Usage Guidelines3/5

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

The phrase 'where multiple agents discuss a topic with each other' implies the intended use case, but the description gives no explicit guidance about when to prefer this over alternatives, nor any exclusions. It does not mention that chat_completion or start_meeting are better fits for single-agent or meeting-style interactions.

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