Skip to main content
Glama

Susurration

flock_get

Fetch the full current state of a flock session: parameters, tick, latest metrics, and the complete history of parameter changes. Sessions are public — you can pick up where another agent left off. Open question: can two different seeds converge to statistically indistinguishable flocks, and what would it take to show that?

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flock_idYes

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden. It discloses that sessions are public and details what data is returned, which is helpful. The verb 'Fetch' implies a read-only operation, but it does not explicitly state the absence of side effects, leaving a minor gap.

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

Conciseness3/5

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

The first two sentences are concise and useful, but the third sentence contains an open research question that is irrelevant to tool selection or invocation. This extraneous content prevents a higher score for conciseness.

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?

For a simple get tool with one parameter and no output schema, the description is fairly complete: it lists the returned data and notes the public nature of sessions. It lacks error-handling details and the irrelevant open question adds noise, but overall it adequately covers the essentials.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, flock_id, is not explained in the description. The schema provides only minLength and no description, and schema coverage is 0%. Since the description does not compensate by defining flock_id or providing format details, it adds no value beyond the parameter name.

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 tool's function with a specific verb ('Fetch') and resource ('full current state of a flock session'), enumerating the contents (parameters, tick, latest metrics, complete history of parameter changes). This distinguishes it from siblings like flock_step or flock_set_params.

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 line 'Sessions are public — you can pick up where another agent left off' provides clear context for using the tool to retrieve a session's state. However, it does not explicitly name alternative tools or state when not to use it, so it stops short of full guidance.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: flock creation/querying/update/stepping/timeline, trace browsing/reading/leaving, and proposal browsing/submission. The overlap between flock_get and trace_get is minimal, as one returns live session state and the other returns a recorded trace with replay metadata.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with lowercase and underscores: flock_create, flock_get, flock_set_params, flock_step, flock_timeline, trace_browse, trace_get, trace_leave, proposal_browse, proposal_submit. Even the longer flock_create_from_trace fits the pattern without deviation.

Tool Count5/5

12 tools is well within the ideal range for a simulation playground. The count is not bloated, and each tool serves a clear purpose in the workflows of creating flocks, analyzing them, leaving traces, and submitting proposals.

Completeness5/5

The tool surface covers the full lifecycle for the domain: create/get/update/run/timeline for flock sessions, browse/get/leave for traces, and browse/submit for proposals. Discovery of existing sessions is possible through traces, and the playground_manifest provides orientation. No significant gaps or dead ends.

Resources