Skip to main content
Glama

Get AI tool detail

get_tool
Read-onlyIdempotent

Fetch the full public detail for one AI tool by its listing slug (as returned by search_tools' toolUrl, e.g. '/tools/acme-writer' -> slug 'acme-writer'). Call this after search_tools to get a tool's full description, launch date, revenue signals (verified or self-reported), and for-sale status. Returns null if the slug doesn't resolve to a live Lanzamientos IA listing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe tool's listing slug.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolYesnull when the slug does not resolve to a live listing on this site.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnly and idempotent, and the description adds useful behavioral details: it mentions the tool returns null for unresolvable slugs and lists the types of information (full description, launch date, revenue signals, for-sale status). This goes beyond the annotations without contradicting them.

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?

Two sentences, front-loaded with the core purpose, then the usage context and an edge case. No wasted words; every clause serves a purpose.

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?

With an output schema present, the description need not detail return structure. It covers purpose, usage guidance, parameter extraction, and error behavior (null return), making it fully self-sufficient for an agent to invoke correctly.

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 100% but the slug description is minimal. The description adds a precise example (e.g., '/tools/acme-writer' -> 'acme-writer'), clarifying exactly what format is expected, which is valuable beyond the schema's generic 'tool's listing slug'.

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 fetches full public detail for one AI tool by its slug, with a concrete example of slug extraction. It explicitly distinguishes from search_tools (which lists) and other siblings, making its purpose unambiguous.

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 instructs to call this after search_tools, establishing a clear workflow. It also notes the null return for invalid slugs, which helps the agent decide when to use it. However, it doesn't explicitly mention when not to use it or provide alternatives beyond the implied sequence.

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

Each tool targets a distinct action: searching, retrieving details, listing alternatives, listing offers, creating a checkout, and submitting a new tool. Descriptions clearly differentiate search_tools from list_alternatives (free-text vs. named competitor) and get_tool (specific slug lookup), so an agent can reliably choose the right one.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (create_checkout, get_tool, list_alternatives, list_offers, search_tools, submit_tool). The verbs are distinct and meaningful, making the API highly predictable.

Tool Count5/5

Six tools is well-scoped for a server that handles discovery, submission, and paid promotion for AI tool listings. Each tool serves a clear purpose without redundancy, and the count feels appropriate for the domain's complexity.

Completeness5/5

The tool surface covers the primary user journeys: finding tools (search_tools), examining a specific tool (get_tool), comparing alternatives (list_alternatives), understanding promotional offers (list_offers), purchasing an offer (create_checkout), and adding new tools (submit_tool). There are no obvious dead ends, and the workflow from discovery to purchase to submission is fully supported.

Resources