Skip to main content
Glama

search_tools

Search the official Frame.io V4 OpenAPI catalog by query, tag, or HTTP method to find API operations for accounts, projects, files, comments, shares, and webhooks.

Instructions

Search all operations in the official Frame.io V4 OpenAPI catalog.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
limitNo
queryNo
methodNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden but only implies it is a read operation. It does not state whether results are paginated, whether limit caps returned matches, how matching is performed (tag/query/method combined or any-of), or what the result payload looks like.

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?

A single front-loaded sentence with zero waste. Nothing redundant or padded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 4-parameter catalog-search tool with no annotations and no output schema, the description is too thin: it omits filtering semantics, result shape, and pagination behavior, leaving the agent to guess at how to construct a useful query.

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

Parameters2/5

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

Schema description coverage is 0% and the description mentions none of the four parameters (tag, limit, query, method). The agent cannot tell from either source whether these filters are ANDed, what 'tag' refers to, or that limit defaults to 100 and maxes at 100 — a notable gap for a search tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Search) and resource (all operations in the official Frame.io V4 OpenAPI catalog), which is more precise than a bare 'search'. It does not name or differentiate itself from siblings such as get_tool_schema or invoke_tool, so the agent must infer the discovery-to-invocation workflow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description never says when to use this tool versus the sibling tools (get_tool_schema, invoke_tool) that operate on the same catalog. No prerequisites, no exclusions, no statement of what to do with the results.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.