Skip to main content
Glama

Conducted MCP

Judge whether a standup is due

standup_due

Given agent-supplied facts, decide whether a standup is due. Triggers in priority order: a deliverable gate reached → 'gate'; else a dependency intersection → 'intersection'; else more than five working days since the last standup → 'weekly'; else 'none'. Working days are an input (the working week varies by team), never computed from a calendar. Returns { due, reason, detail }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
todayNo
gate_reachedNo
last_standup_dateNo
dependency_intersectionNo
working_days_since_last_standupNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description fully bears the transparency burden. It discloses the priority logic for triggers, clarifies that working days are an input not a computation, and specifies the return structure ({ due, reason, detail }). No contradictions or hidden behaviors.

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 three concise sentences, each serving a distinct purpose: purpose statement, logic explanation, and caveat about working days. No fluff, 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?

Given the tool's moderate complexity (5 parameters, no output schema, no annotations), the description covers the core logic, output shape, and a key behavioral note. It omits error handling or input validation details, but for a judgment tool without required fields, it is adequately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It explains the role of each parameter (e.g., gate_reached triggers 'gate', working_days_since_last_standup triggers 'weekly') and clarifies that working_days_since_last_standup is an input. Though date formats are unspecified, the description adds significant meaning beyond the raw schema.

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 states the tool's purpose: 'Given agent-supplied facts, decide whether a standup is due.' It specifies the verb (decide) and resource (standup due) and differentiates from siblings by detailing the exact logic and output format, leaving no ambiguity.

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 explains the decision logic but does not explicitly state when to use this tool over siblings like 'evaluate_gate' or 'decision_log_guidance'. Usage is implied (when needing to determine if a standup is due), but no exclusions or alternatives are provided.

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

A4.4/5.0
Disambiguation5/5

Each tool addresses a distinct aspect of the methodology: decision logging, gate evaluation, kickoff planning and questions, procedure retrieval, standup scheduling, and artifact validation. No two tools have overlapping purposes.

Naming Consistency3/5

All names use snake_case but mix verb_noun (evaluate_gate, validate_artifact) with noun_phrase patterns (kickoff_plan, next_procedure, standup_due). The pattern is not fully consistent, though each name is still readable.

Tool Count5/5

With 7 tools, the server covers the key lifecycle points of the Conducted Development methodology without being too sparse or bloated. Each tool serves a clear purpose within this scope.

Completeness4/5

The tools cover decision logging, gate checks, kickoff, procedure guidance, standup triggers, and validation. Missing an explicit tool for session execution, but next_procedure provides steps, mitigating the gap.