Skip to main content
Glama

get_more_tools

Read-onlyIdempotent

Check for additional tools whenever your task might benefit from specialized capabilities - even if existing tools could work as a fallback.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextYesA description of your goal and what kind of tool would help accomplish it.
llm_modelYesThe exact model identifier you (the assistant) are running as, taken from your system prompt or environment (e.g. "claude-opus-4-8", "gpt-5.2"). Used for analytics only. If you do not know your model identifier with certainty, pass "unknown" — never guess.
conversation_idNoEcho the conversation_id from the server's previous response. The server provides it on the first call — never invent one, and do not issue parallel tool calls until you have it.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior, so the safety profile is well covered. The description adds useful context about when to check for more tools but does not describe what happens after the call or what form the additional tools take. This is acceptable given the strong annotation coverage.

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 a single, front-loaded sentence. It leads with the action ('Check for additional tools') and then gives a clear condition, with no redundant or wasted wording.

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 simple meta-tool with well-documented parameters and safety annotations, the description is largely complete. The main gap is the lack of any statement about the return value or how the discovered tools are presented, but since there is no output schema, a brief clarification would have made it fully complete.

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 both required parameters are already fully documented. The description reinforces the purpose of the 'context' parameter but adds no additional parameter-level meaning beyond the schema, so the baseline score of 3 is appropriate.

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 states a specific verb ('Check') and a clear resource ('additional tools'), and the purpose—discovering specialized tools—is immediately apparent. It also inherently distinguishes itself from sibling get_* tools by being a meta-tool that retrieves tools rather than product information.

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 gives an explicit trigger condition: use it whenever the task might benefit from specialized capabilities, even if existing tools could work as a fallback. It does not list when-not-to-use cases or name alternative tools, so it stops short of a full 5.

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

Each tool maps to a distinct purpose: comparison, demo, pricing, product overview, signup, and tool discovery. There is no meaningful overlap between them, so an agent should rarely confuse one for another.

Naming Consistency5/5

All tool names follow the same get_<noun> convention, using clear lowercase with underscores. This is consistent and predictable across the entire set.

Tool Count5/5

Six tools is a well-scoped size for a customer-service/sales information server. Each tool covers one necessary action without requiring a large or redundant surface.

Completeness5/5

The set covers the full customer journey from understanding the product and pricing to comparing, booking a demo, and signing up. Product overview and comparison also link to deeper resources, so there are no obvious dead ends.

Resources