Skip to main content
Glama

Prepare diagnostic summary handoff

prepare_diagnostic_summary
Read-onlyIdempotent

Validates a complete diagnostic summary and returns a handoff payload. Does not send email. Map the diagnosis to a process brief; the user must confirm before POST /api/request-process-assessment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sectorYesBusiness sector, e.g. manufacturing or food quality.
processYesShort name of the process under diagnosis, e.g. delivery notes into ERP.
honeypotNoAnti-spam trap. Must be empty or omitted.
languageYesLanguage of the diagnostic summary: it or en.
nextStepsYesAgreed next steps after reviewing this summary.
clientNameYesClient full name.
bottlenecksYesObserved bottlenecks, one item per string.
clientEmailYesClient work email.
constraintsYesHard constraints, e.g. human validation before ERP import.
clientCompanyNoClient company name, if known.
dataAvailableYesData that can be shared for a prototype, preferably anonymized samples.
openQuestionsYesOpen questions still to confirm with the client.
opportunitiesYesConcrete opportunities that follow from the evidence.
currentSystemsYesSystems already in use, e.g. email, PDF, Mago Zucchetti.
needCategoriesYesOne or more Frasma need categories that fit the diagnosis.
baselineMetricsYesBaseline metrics before any Frasma work, e.g. minutes per document.
currentWorkflowYesHow the process is done today, including people, tools, and handoffs.
desiredOutcomesYesDesired outcomes without invented savings or guarantees.
recommendationsYesRecommended next steps for a limited prototype or discovery.
volumesAndFrequencyYesVolumes and frequency, e.g. about 40 DDT per day.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
handoffYes
summaryYes
completenessYes

TDQS

A4/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive, so the description does not need to repeat that. It adds value by disclosing that no email is sent and that the actual POST is deferred until user confirmation, clarifying side-effect boundaries beyond the annotations.

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?

Three short sentences with the main action first, a side-effect disclaimer second, and workflow guidance third. There is no redundant restating of schema or annotations.

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 20-parameter tool, the description gives the essential orchestration context: it validates a summary, returns a payload, sends nothing, and is a prerequisite to a user-confirmed POST; the output schema and parameter schema cover the remaining details. The ambiguous 'process brief' mapping and lack of validation-criteria detail keep it from a 5.

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 parameters are already fully documented with rich descriptions, giving a baseline of 3. The tool description adds no additional parameter-level semantics; the only adjacent hint, 'Map the diagnosis to a process brief,' is too vague to clarify any specific argument.

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 first sentence states a concrete action: validates a complete diagnostic summary and returns a handoff payload, and 'Does not send email' narrows the scope. However, it does not clearly distinguish itself from the prepare_project_brief sibling, and the instruction 'Map the diagnosis to a process brief' blurs the tool's exact role.

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?

It gives useful when-to-use context: this is a validation/handoff step, not an email or submission action, and it must precede POST /api/request-process-assessment only after user confirmation. It does not explicitly name alternatives or state when to prefer prepare_project_brief, so the guidance is clear but not exhaustive.

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.9/5.0
Disambiguation4/5

Most tools have clearly distinct roles: getters return canonical framework/profile objects, search handles broad knowledge queries, and the two prepare tools validate different payloads. However, get_frasma_profile and search_frasma_knowledge overlap on sectors and commercial boundaries, and both prepare tools produce handoff payloads, so there is a small amount of potential confusion.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: get_, prepare_, and search_. The verbs accurately describe the action and the nouns clearly identify the object, making the set predictable and easy to navigate.

Tool Count5/5

With exactly five tools, the server is well-scoped for its purpose: retrieving verified knowledge, accessing canonical profiles/frameworks, and preparing validated handoff payloads. Each tool earns its place and there is no sense of bloat or thinness.

Completeness4/5

The set covers the core pre-submission workflow: retrieving verified facts, mapping diagnostics, and validating project briefs. The only notable gap is that no tool actually submits or confirms the POST /api/request-process-assessment; the descriptions deliberately leave that to an external user action.