Skip to main content
Glama

suggest_flow

Read-onlyIdempotent

RECOMMENDED FIRST STEP for any image/video/text processing request. Ask it which model or models to use — it answers for a single step and a multi-step chain alike, since a one-model flow is just a flow. Understands natural language (English, Korean, and more) and returns models in order, with parameter recommendations and wiring. Use this BEFORE list_models — it handles parameter inference (e.g. '4K' → scale_factor=4) and model selection automatically. Pass the result straight to create_flow.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskYesNatural language description of what the user wants to do. Supports English, Korean, and other languages. Examples: "remove person from photo", "upscale and sharpen image", "배경 제거해줘", "화질 개선"
input_typeNoExpected input type (e.g., 'image', 'text', 'video'). Narrows suggestions.
output_typeNoExpected output type (e.g., 'image', 'text'). Narrows suggestions.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, non-destructive. Description adds that it handles parameter inference (e.g., '4K' → scale_factor=4), supports multiple languages, and returns ordered model recommendations with wiring, giving behavioral context beyond the safety 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?

Description is dense but every sentence is purposeful: it states its primary role, capabilities, and integration path, all in a few sentences. It's front-loaded with 'RECOMMENDED FIRST STEP' and avoids redundancy.

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?

Without an output schema, the description explains the return value shape ('models in order, with parameter recommendations and wiring') and its downstream use with create_flow. It covers multi-step chains and language support, making it sufficiently complete for a suggestion tool, though exact output format is not detailed.

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?

The schema covers all three parameters with 100% description coverage, so baseline is 3. Description adds contextual info about natural language understanding and parameter inference, but doesn't delve into per-parameter syntax beyond the schema, which already includes examples.

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?

Clearly states it suggests model(s) for processing tasks, with verb 'suggest' reinforced by 'Ask it which model or models to use' and 'returns models in order'. It also differentiates from siblings by positioning itself as the recommended first step before list_models and feeding create_flow.

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?

Explicitly says 'RECOMMENDED FIRST STEP for any image/video/text processing request' and instructs to use before list_models and pass result to create_flow, providing direct when-to-use and chaining guidance.

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/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear separation between flow lifecycle, execution, model exploration, community, and account tools. Even similar-sounding tools like create_flow, preview_flow, and suggest_flow have clearly different purposes (actually creating, dry-running, and recommending models). Descriptions prevent misselection.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., create_flow, list_flows, run_batch, cancel_flow). No mixed conventions or vague verbs like 'process' or 'handle'. The naming is uniform and predictable.

Tool Count3/5

At 33 tools, this is a large surface, but each tool addresses a distinct feature of the cnaps.ai platform, from flow CRUD and execution to community features and notifications. Still, it exceeds the typical well-scoped range and feels heavy, making it a borderline case between appropriate and too many.

Completeness3/5

The core flow lifecycle (create, read, update, delete, restore, duplicate) and execution (run, batch, cancel) are covered, but structural editing of flow graphs is missing—update_flow only changes parameters, not topology. Additionally, there is no run history, batch list/cancel, or community post update/delete, leaving notable gaps for a platform API.

Resources