Skip to main content
Glama

find_tools

Find Baseframe Labs developer tools that fit a plain-language goal, ranked. Use this first when the user describes a problem (e.g. 'make my agent's PRs reviewable').

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalYesWhat the user is trying to do.

TDQS

A4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of explaining behavior. It mentions 'ranked' but does not disclose what the tool returns, whether it's safe/read-only, how ranking works, or any limitations. The description is too sparse to provide meaningful behavioral transparency.

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 two concise sentences that front-load the action and resource, and include a useful example. Every word contributes meaning, with no fluff or repetition.

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 simplicity (one parameter, no output schema), the description adequately covers its purpose and usage. The example helps clarify expected user input. It could be more complete by describing the output (e.g., a ranked list of tool names), but overall it's sufficient for this tool's complexity.

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?

The schema already describes the single parameter 'goal' as 'What the user is trying to do.' The description adds value by clarifying it should be a 'plain-language goal' and provides a concrete example, enhancing the semantic understanding of what input is expected.

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 a specific verb ('find'), a specific resource ('Baseframe Labs developer tools'), and the tool's distinctive functionality (matching plain-language goals and returning ranked results). This clearly differentiates it from sibling tools like get_docs or list_products.

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 provides an explicit when-to-use instruction ('Use this first when the user describes a problem') with a concrete example. It doesn't explicitly name alternatives or exclusions, but 'first' implies it should precede more specific tools, which is sufficient 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.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: find_tools searches by goal, list_products enumerates the catalogue, and get_docs/get_install/get_mcp_config retrieve different specific details for a product. No two tools overlap in intent or output, so an agent can accurately select the right one.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: find_tools, list_products, get_docs, get_install, get_mcp_config. The use of lowercase snake_case with clear verbs (find, list, get) creates a predictable and uniform naming convention.

Tool Count5/5

Five tools is well-suited for a read-only catalogue server: one discovery search, one list operation, and three detail views (docs, install, config). This is neither too thin nor too heavy, and every tool serves a distinct informational purpose.

Completeness5/5

The catalogue domain is fully covered: users can explore all products (list_products), search by intent (find_tools), and retrieve each product's documentation (get_docs), installation command (get_install), and MCP configuration (get_mcp_config). There are no obvious missing operations for a non-mutable catalogue.

Resources