Skip to main content
Glama

api_search

Read-onlyIdempotent

Discover available Crevio API endpoints. Use this BEFORE api_execute when you're unsure which endpoint to call, need to check parameter names, or want to explore what's available for a domain (e.g. "experiences", "discounts"). A tools method returns the full API catalog — an array of hashes keyed with strings: "method", "path", "summary", "description", "tags", "parameters", "request_body". Examples: tools.select { |t| t["tags"]&.include?("Products") }.map { |t| "#{t["method"]} #{t["path"]} — #{t["summary"]}" } tools.find { |t| t["path"].include?("price_variants") && t["method"] == "POST" }["request_body"] tools.map { |t| t["tags"] }.flatten.compact.uniq.sort — list all API domains

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesRuby code to execute. Use `tools` to access the API catalog and filter/search it.

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, open-world behavior. The description adds useful context beyond that: the tools method returns an array of hashes with specific string keys, and the examples clarify that the result can be searched and filtered programmatically. It does not describe edge cases like invalid Ruby, but the annotation coverage makes this a minor gap.

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 longer than many, but every part earns its place: main purpose, usage timing, return structure, and examples. The examples are embedded inline rather than as a separate block, which keeps it compact. Slightly denser than necessary, but highly useful.

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?

For a code-callback tool with no output schema, the description fully explains what the execution context provides, what the returned data looks like, and how to leverage it for exploration. An agent can confidently call this tool to discover endpoints and prepare arguments for api_execute.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description significantly extends the meaning of the code parameter with concrete, runnable Ruby examples. It explains how to access the catalog, filter by tag, pull request bodies, and list domains, which is far more actionable than the schema's one-line description.

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 defines a concrete behavior: discover available Crevio API endpoints, and explicitly positions api_search as the exploration tool used before api_execute. It clearly distinguishes itself from the nearby sibling by naming what it returns and what it is for, leaving no ambiguity about its role.

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?

The description states precisely when to use the tool: before api_execute, when unsure which endpoint to call, when needing to check parameter names, or when exploring a domain. It also gives concrete examples of queries, so the agent knows what kind of code to build and how to use the tools object.

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 maps to a distinct resource-action pair: REST execution, endpoint discovery, chat/run lifecycle, approvals, and identity. Even similar tools like get_run and wait_for_run are clearly separated by blocking vs. non-blocking behavior.

Naming Consistency4/5

Most tools follow a clear snake_case verb_noun pattern (get_run, list_chats, send_message, cancel_run). Minor deviations like api_execute, api_search, ask_crevio, and whoami keep the set readable but prevent a perfect consistency score.

Tool Count5/5

Fourteen tools is within the well-scoped range and each tool has a meaningful role across API access, run management, chat interaction, approvals, and account identity. No obvious bloat or redundant duplicates.

Completeness4/5

The generic api_execute tool provides broad REST API coverage, and run/chat lifecycle tools are nearly complete. The ask_crevio description references a start_task tool that does not exist, though start_chat offers a workaround for launching runs without waiting.

Resources