Skip to main content
Glama

chieflab_query_proof_ledger

P80 — query the persistent proof ledger. USE WHEN the user (or a dashboard) asks 'what has ChiefLab actually shipped for this workspace?' or 'show me the launch history.' Returns the proof rows for executed publishes / sends / manual-posts with the artifact URLs, channels, execution modes, and measurement state. Persistent across cold starts when deps.proofLedgerStore is wired to Supabase; falls back to in-memory (warm function lifetime) otherwise.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size (1-500, default 50).
runIdNoOptional. Filter to one run's proofs.
workspaceIdNoOptional workspace id (defaults to auth workspace).
sinceTimestampNoOptional ISO timestamp; only return proofs published at or after.
measurementDueOnlyNoWhen true, returns only rows with measurement_due_at <= now AND measured_at IS NULL. Use this to find what's ready for 24h readback.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden and does well: it discloses persistence semantics (Supabase-backed vs in-memory fallback) and describes return contents (artifact URLs, channels, execution modes, measurement state). It does not explicitly state read-only behavior, but 'query' implies it; still, a clear 'does not modify data' statement would strengthen this.

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, front-loaded with the tool's core purpose, and uses exactly three sentences to convey purpose, usage triggers, return content, and persistence behavior. Every sentence adds value; there is no redundant or filler text.

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 query tool with 5 optional parameters, no output schema, and no annotations, the description covers the main context: what it returns, when to use it, and behavioral persistence. It does not mention result ordering or default limit, but the schema provides default limit and the description gives a solid overall picture, making it largely complete.

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%, so the baseline is 3. The description does not add per-parameter meaning; it merely references the ledger query context. The schema already explains each parameter's purpose, so the description adds little beyond the structured field definitions.

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 ('query') and resource ('persistent proof ledger'), and clearly explains the tool's output with concrete examples of user intents ('what has ChiefLab actually shipped?', 'show me the launch history'). It distinguishes itself from sibling tools by focusing on the ledger of executed publishes/sends/manual-posts rather than actions like checking due measurements.

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 gives explicit 'USE WHEN' scenarios with example user phrasings, making it clear when to invoke the tool. However, it does not explicitly state when not to use it or name alternative tools, so it misses the full 'when-not/alternatives' tier.

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