Skip to main content
Glama

Send Chat Message

deerflow_chat

Send a message to a DeerFlow thread to start or continue a research run. Returns thread and run IDs plus a web URL; poll run status, then fetch the report.

Instructions

Send a message to a DeerFlow thread and start a run. Omit thread_id to create a new thread, or pass an existing thread_id to continue a conversation. Returns immediately with the thread/run ids and a web URL; poll deerflow_run_status, then deerflow_get_report.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoOptional DeerFlow model name.
messageYesThe message to send to the DeerFlow agent.
thread_idNoExisting thread id to continue. Omit to start a new thread.
recursion_limitNoOptional agent recursion budget for this run (default 1000).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
run_idYes
statusYes
web_urlYes
thread_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.5

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, openWorldHint=true, idempotentHint=false, and destructiveHint=false. The description adds genuinely useful behavior beyond them: the call is asynchronous and 'returns immediately' with thread/run ids plus a web URL. It does not mention auth requirements or rate limits, keeping it short of a 5.

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 tight sentences, front-loaded with the action and followed by the branching condition and the next-step workflow. No redundant or filler text.

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?

An output schema exists, yet the description still succinctly characterizes the immediate return (ids and URL) and the async polling pattern, which is the key behavioral fact an agent needs. Nothing essential is missing.

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 model, message, thread_id, and recursion_limit are all documented in the schema itself. The description restates the thread_id omit-vs-continue semantics but adds no syntax or default detail beyond what the schema already provides, so the baseline 3 applies.

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?

States a specific verb and resource ('Send a message to a DeerFlow thread and start a run') and immediately differentiates the two modes of operation via the thread_id parameter, so an agent can distinguish it from siblings like deerflow_run_status or deerflow_research.

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 names when to omit vs. pass thread_id and routes the agent through the follow-up workflow ('poll deerflow_run_status, then deerflow_get_report'), naming the sibling tools to use next. This is exactly the when/how guidance an agent needs.

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