Skip to main content
Glama

umlforge_suggest

Read-only

Describe your goal in plain English to get the right UML diagram tool recommendation with pre-filled parameters and reasoning.

Instructions

*** START HERE if you are unsure which tool to use. ***

Describe what you want to achieve in plain English. This tool will:

  1. Identify the right tool for your goal

  2. Return the EXACT tool call with parameters pre-filled ? ready to execute

  3. Explain why this tool fits and suggest an alternative

USE THIS WHEN:

  • You are not sure which of the 14 tools to use

  • You want to describe a goal ("analyse this repo", "model our order lifecycle") and get a ready-to-run recommendation

  • You want to avoid trial and error with the wrong tool

Example inputs:

  • "analyse https://github.com/pallets/flask and give me an architecture report"

  • "show how our Order entity moves through states"

  • "diagram our Kafka event flow between Order, Inventory, and Notification services"

  • "I have existing diagrams and my sprint changed the auth service"

The response will include the exact tool name, all parameters pre-filled with values derived from your description, and a one-line explanation.

Args: task_description: Plain-English description of what you want to achieve. Include any relevant details: URLs, entity names, service names, tech stack ? the more context, the better the pre-filled parameters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_descriptionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.9

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds genuinely useful behavior: it returns a recommendation plus a ready-to-run call rather than executing anything, and enumerates the four parts of the response (tool name, parameters, rationale, alternative). It is silent on rate limits, failure modes, or what happens when no tool matches, which keeps it short of a 5.

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?

Front-loaded with 'START HERE if you are unsure which tool to use,' then organized into steps, use cases, examples, and args — easy to scan. Mild redundancy: the Args paragraph restates 'plain-English description' already covered in the opening and in the input examples, and the step list partially repeats the 'USE THIS WHEN' bullets.

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?

An output schema exists, so the description needn't enumerate return values, and it instead explains the shape of the recommendation at the right level. Combined with the annotation-covered safety profile and the explicit routing guidance, an agent has everything needed to call this correctly on the first try.

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

Parameters5/5

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

Schema description coverage is 0% for the single free-text parameter, so the description carries the full burden — and it does: 'Plain-English description... Include any relevant details: URLs, entity names, service names, tech stack — the more context, the better the pre-filled parameters.' It also supplies four concrete example inputs that model the expected shape and specificity.

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?

States a specific verb and purpose — route a plain-English goal to the correct UMLForge tool and return a pre-filled call — and explicitly positions itself against the 13 sibling tools ('not sure which of the 14 tools to use'). An agent can distinguish this router from umlforge_erd_schema or umlforge_threat_model without opening any schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Contains an explicit 'USE THIS WHEN' block with three concrete trigger conditions, including the meta-condition ('you are not sure which tool to use') and the alternative behavior it replaces ('avoid trial and error with the wrong tool'). Nothing about when to invoke it is left to inference.

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