Skip to main content
Glama

chieflab_check_measurement_due

P71 — measurement queue inspector. USE WHEN the agent wants to know which executed actions are ready for their 24h readback (regardless of how they were executed — native connector OR manual paste). Lists actions where metadata.proof.measurementDueAt <= now AND metadata.proof.measuredAt is unset. Returns: [{actionId, runId, channel, executedAt, measurementDueAt, artifactUrl, executionStatus, recommendedNextTool}]. Pairs with chiefmo_post_launch_review which the cron also calls automatically; this tool surfaces the same queue to a foreground agent so it can opportunistically pull metrics during a session instead of waiting for the next cron tick.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
runIdNoOptional. Restrict to one run.
workspaceIdNoOptional workspace id.

TDQS

A4.2/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 full burden. It discloses the exact selection criteria, the return fields, and the fact that it works regardless of execution method. Although it does not explicitly state 'read-only,' the 'queue inspector' phrasing and action of listing imply no side effects, which is sufficient for a non-mutating tool.

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 dense but efficient, front-loading the purpose and usage, and including the return shape. The 'P71' prefix adds a minor cryptic label that isn't necessary, but overall every sentence contributes meaningful context.

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?

There is no output schema, so the description compensates by listing the exact return fields. It also covers the filtering condition, execution methods, and the tool's relationship to cron-driven reviews. This is complete for a read-only queue inspection tool with optional parameters.

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%, with runId described as 'Optional. Restrict to one run.' and workspaceId as 'Optional workspace id.' The tool description does not add further parameter-specific semantics, so it neither enhances nor detracts from what the schema already provides.

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 identifies the tool as a 'measurement queue inspector' and states it 'Lists actions where metadata.proof.measurementDueAt <= now AND metadata.proof.measuredAt is unset.' This specifies a distinct purpose and resource, differentiating it from other tools like force_measurement_due or post_launch_review.

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 description explicitly says 'USE WHEN the agent wants to know which executed actions are ready for their 24h readback' and explains how it relates to chiefmo_post_launch_review. It clearly states the tool surfaces the queue for opportunistic use instead of waiting for the next cron tick, but does not explicitly list when not to use it or name direct alternative tools for exclusion.

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

A3.8/5.0
Disambiguation2/5

Many tools have overlapping purposes (e.g., multiple launch and measurement tools), and the presence of aliases like chiefmo_* can confuse an agent. While descriptions are detailed, the sheer number of tools covering similar workflow steps makes it hard to distinguish the right one without careful reading.

Naming Consistency4/5

All public tools start with 'chieflab_' and mostly follow a verb_noun pattern (e.g., chieflab_approve_action, chieflab_set_company_profile). However, some internal names like 'chiefmo_*' appear as aliases, which slightly breaks consistency from the user's perspective.

Tool Count1/5

45 tools is excessive for a single MCP server. While the domain is broad, this many tools likely overwhelms agents and users. Most well-scoped servers have 3-15 tools; 45 indicates poor scoping and should be split into focused sub-servers.

Completeness5/5

The tool surface is extremely comprehensive, covering the full lifecycle from signup and installation to launch, approval, execution, measurement, next-move suggestions, manual fallback, and specialist delegation. No obvious gaps for the stated purpose of growth and distribution.

Resources