Skip to main content
Glama
yanqiw

Coordination Memory MCP

by yanqiw

get_team_board

Fetch assignment lanes for a team to see current work items and their acceptance status from the coordination memory.

Instructions

Return a team's assignment lanes from the local store.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
team_idNodefault

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.6

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a read operation via 'Return' and notes the 'local store' source, but it does not disclose side effects, error behavior, freshness, permissions, or what happens when the team does not exist.

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?

The description is a single, front-loaded sentence with no wasted words. It immediately states the action, target, and source, making it easy to scan and process.

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?

While the tool is simple and has an output schema, the description lacks usage guidance, parameter semantics, and sufficient distinction from sibling tools. For a tool with no annotations and no schema parameter descriptions, this is too thin to fully guide correct invocation.

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?

Schema description coverage is 0%, and the description does not mention 'team_id' at all, leaving its meaning, requiredness, and format implicit. The parameter name and 'default' value offer some signal, but the description does not compensate for the missing schema documentation.

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 specific action ('Return'), a concrete resource ('a team's assignment lanes'), and a data source ('local store'). It is clear about what the tool does, though it does not explicitly distinguish itself from sibling board-related tools like get_attention_board.

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?

The description gives no guidance on when to choose this tool over alternatives such as get_attention_board or get_workspace_detail. There is no mention of conditions, prerequisites, or exclusions, leaving usage context entirely to inference.

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