Skip to main content
Glama

chat_get_cockpit_overview

Retrieve a display-ready cockpit overview combining saved chat sessions, recent messages, IDE evidence, queued editor actions, blockers, cards, and suggested next actions from local JSON files.

Instructions

Return a display-ready MCP Chat cockpit overview packet.

The packet combines saved chat sessions, recent messages, matching IDE companion ledger evidence, queued editor actions, blockers, cards, and suggested next actions. It only reads local JSON files.

KB: see knowledge_base/32_AGENT_PLAYABLE_SLICE_RECIPE.md#d22-chat-cockpit-overview Example: chat_get_cockpit_overview(session="ide-companion")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
sessionNo
message_limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It clearly states 'It only reads local JSON files,' which establishes a read-only, non-mutating safety profile. It also names the local data sources aggregated in the packet. It omits error/rate-limit behavior, but the key safety-relevant behavior is disclosed.

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

Conciseness4/5

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

The description is front-loaded with the tool's purpose, followed by a compact list of packet contents, a read-only guarantee, a knowledge-base reference, and a concrete example. Each part earns its place, though the KB pointer is less universally useful than the rest.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema covers return shape, and the description explains what data is aggregated and that the operation is local/read-only. It is missing parameter semantics and sibling-tool routing, but with three optional parameters and an example, an agent can still invoke the tool reasonably. The lack of guidance on when to use it versus chat_get_cockpit_ledger_detail is a notable gap.

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%, so the description must compensate. Only the `session` parameter is illustrated via the example call, and `limit` and `message_limit` are never semantically explained. The parameter names and defaults give some hints, but the description does not adequately define what they control or how they interact.

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 opens with a specific verb and resource: 'Return a display-ready MCP Chat cockpit overview packet.' It also enumerates the packet's contents, making the tool's function clear. It does not explicitly differentiate from sibling tools like chat_get_cockpit_ledger_detail, though the 'overview' vs 'ledger detail' contrast is implied.

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 description implies usage through 'cockpit overview' and 'display-ready packet,' and it notes the tool only reads local JSON files. However, it never explicitly states when to prefer this over chat_list_sessions, chat_get_session_resume_context, or chat_get_cockpit_ledger_detail, nor does it provide any when-not-to-use guidance.

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

Deploy Server

Other Tools