Skip to main content
Glama

Get Team Status

get_team_status

Check your project's coordination status: see if it is initialized, which team is loaded, how many open tasks, reports, and issues exist, and review the five most recent activity entries.

Instructions

Return a concise status snapshot of the current project.

Shows whether the project is initialized, which team / roster is loaded, how many open tasks / reports / issues are on disk, and the five most recent activity entries (sorted newest first).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoOutput language (``zh`` / ``en``). Empty = auto-detect from ``docs/agents/fcop.json``.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.4

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does add useful output behavior, such as 'five most recent activity entries (sorted newest first)' and the on-disk scope of counts. Still, it does not explicitly state that the operation is read-only with no side effects, nor how it behaves when no project is initialized beyond saying it shows whether one is.

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 compact and front-loaded: the first sentence states the purpose, and the second adds the concrete contents without excess verbiage. Every sentence earns its place.

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 status-read tool with one documented optional parameter and an output schema present, the description covers the returned contents well. It is slightly incomplete in that it does not clarify read-only behavior or usage relative to sibling tools, but nothing needed to invoke it correctly 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?

The single parameter 'lang' is fully described in the input schema, including its default and auto-detection behavior, so schema coverage is 100%. The description adds no parameter-level meaning, but none is needed because the schema already carries that burden.

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 uses a specific verb ('Return') and a specific resource ('status snapshot of the current project'), then enumerates exactly what the snapshot contains: initialization state, loaded roster, counts of open tasks/reports/issues, and recent activity. This clearly distinguishes it from the many list/detail sibling tools.

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 intended use is implied: a concise overview of project state, as opposed to detailed per-item tools like list_tasks or list_reports. However, there is no explicit when-to-use or when-not-to-use guidance, nor any named alternative for digging into a specific aspect of the status.

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