Skip to main content
Glama

Search automation API

search_automation_api
Read-only

Search installed OmniFocus API docs (4.9+) to locate TypeScript declarations and comments by query. Returns paginated results with offset and character limits, without executing code.

Instructions

Search installed OmniFocus API docs (4.9+). Returns paginated TypeScript declarations and comments; does not execute code.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesAPI search text, e.g. Task.RepetitionRule or getTypeScriptDeclarations. Searches documentation, not tasks.
offsetNoUTF-16 character offset; use nextOffset from the previous page (default 0).
refreshNoBypass the documentation cache. The running OmniFocus version/build is checked on every call regardless.
maxCharactersNoMaximum returned text characters (default 12000).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.8/5.0
Behavior4/5

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

With readOnlyHint=true already in annotations, the description still adds behavioral value by stating it 'Returns paginated TypeScript declarations and comments' and 'does not execute code'. This tells the agent what to expect from the output and reinforces the non-executing, read-only nature beyond what annotations convey.

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 tightly packed sentence that front-loads the core purpose and adds two valuable behavioral clarifications: paginated TypeScript content and no code execution. Every clause earns its place with zero filler.

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 read-only annotations, a fully self-describing schema, and the presence of an output schema, the description is largely complete for invoking this tool correctly. The main gap is the absence of any comparison to sibling search tools, such as search_items or analyze, which would have made usage guidance 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 the input schema fully explains each parameter including query, offset, refresh, and maxCharacters. The description adds general context about searching API docs but no parameter-specific details beyond the schema, so the baseline 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 uses a specific verb-resource pair: 'Search installed OmniFocus API docs (4.9+)', which is distinct from sibling search tools that target tasks, projects, or tags. It also clarifies it 'does not execute code', further disambiguating it from tools like analyze. This is a clear, non-tautological statement of what the tool does.

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 implies the tool is for looking up API documentation but offers no explicit guidance on when to choose it over sibling search tools or analyze, and names no alternatives or exclusions. The only implicit usage clue is the scope 'installed OmniFocus API docs', which is not enough to route an agent confidently.

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