Skip to main content
Glama

StackResolve

resolve

Best tools for a natural-language task: resolves the task to the capabilities it needs, returns products that expose them ranked by fit and AgentReady score, each with a reason. Optional requirements (api/mcp/self_serve/openapi/cli) filter candidates. Set discover:true to search the web and audit new products into the registry when coverage is thin (slower, costs more).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiNo
cliNo
mcpNo
taskYes
openapiNo
discoverNo
self_serveNo

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries full behavioral disclosure. It transparently explains the discover:true side effect (searches the web, audits new products into the registry, slower and costlier), the filtering behavior, and the return of ranked products with reasons. It does not mention rate limits or auth, but for a tool of this nature these aren't critical.

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?

The description is a single dense paragraph, front-loaded with the core purpose. Every sentence adds value: the main behavior, the optional filters, and the discover side effect with cost implications. No fluff, though it could be split into bullets for readability—still appropriately sized.

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 tool with 7 params, no output schema, and a non-trivial discover behavior, the description provides enough to call it correctly: the task input, filter semantics, and the discover trade-off. It doesn't detail the exact output structure, but the description's statement about ranked products with reasons suffices for agent invocation.

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 explain parameters. It does: 'task' is the natural-language task, optional boolean flags (api/mcp/self_serve/openapi/cli) filter candidates, and 'discover' triggers web search and audit. All 7 params are effectively covered, despite the schema providing no descriptions itself.

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 function: it takes a natural-language task and returns products (ranked by fit and AgentReady score) that expose required capabilities, each with a reason. This is specific and distinguishes it from siblings like 'search_tools' or 'find_tools_for_task' by highlighting the resolution and ranking behavior.

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 sets clear context—it's for natural-language tasks—and explains optional filtering by capability type and the discover flag for broader web search. It doesn't explicitly name alternatives or state when not to use it, but the context is sufficient for an agent to infer applicability.

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

C2.6/5.0
Disambiguation2/5

resolve and find_tools_for_task both return ranked tool recommendations for a task, and how_to also surfaces recommendedTools, making their boundaries unclear. search_tools adds further overlap as a registry search by query and requirements. The company/research and registry lookup tools are more distinct, but the task-to-tool cluster is genuinely confusing.

Naming Consistency4/5

The naming is almost entirely snake_case verb_noun: get_company, find_competitors, search_tools, compare_products, list_registry. The exceptions are audit and resolve as bare verbs and how_to as an idiom, but they are still recognizable.

Tool Count4/5

Fifteen tools is at the upper end of a reasonable range, and the broad scope of registry lookup, research, comparison, audit, and interface generation supports a larger surface. However, find_tools_for_task largely duplicates resolve, so the count is slightly higher than necessary.

Completeness4/5

The server covers the main registry lifecycle: listing, searching, getting records, comparing, researching, pricing, readiness auditing, and generating agent interfaces. It is intentionally read/research-oriented, so the lack of registry CRUD is not a severe gap. Minor missing pieces like direct per-product OpenAPI retrieval or registry entry management are workable around.