Skip to main content
Glama

Check whether a Mac can run Yappy

check_mac_compatibility
Read-onlyIdempotent

Decide whether a specific Mac can run Yappy, given its macOS version and CPU architecture, and return the reasons. Prefer this over reasoning about the requirements yourself: it encodes the same rules the installer uses, so the answer you give a user matches what will actually happen.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
archYesThe CPU architecture: arm64 for Apple Silicon, x86_64 for Intel.
os_versionYesThe macOS version on the machine, for example "14.5".

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds meaningful context beyond annotations: it returns the reasons and enforces the installer's actual compatibility rules, so the answer matches reality. This gives the agent useful behavioral expectations without contradicting any annotation.

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 concise sentences: the first states the purpose and required inputs, the second gives usage guidance and the benefit. Every sentence earns its place with no fluff or redundancy.

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 simple, well-schema-documented tool with four rich annotations, the description covers the task, inputs, output (reasons), and the reason this tool should be trusted. There is no output schema, but the description explicitly says the return will include reasons, giving enough context for an agent to invoke and interpret it.

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 coverage is 100%, and the description repeats only that the tool uses 'macOS version and CPU architecture,' which maps directly to os_version and arch. It adds no new parameter meaning 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?

States a specific verb ('Decide'), the exact resource (a specific Mac running Yappy), the inputs (macOS version and CPU architecture), and the output (reasons). This clearly differentiates it from the sibling get_system_requirements, which would provide general requirements rather than a compatibility verdict.

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?

Explicitly recommends using this tool instead of manually reasoning about requirements, and explains why: it encodes the same rules the installer uses. It does not name sibling alternatives or state when not to use it, but the guidance strongly narrows when the tool is appropriate.

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

Each tool targets a clearly distinct piece of information or action: compatibility checks, system requirements, pricing, features, FAQ, releases, and export jobs. Even the pair check_mac_compatibility and get_system_requirements is separated by one asking for a decision about a specific Mac and the other returning raw requirements.

Naming Consistency5/5

Tool names consistently follow a verb_noun pattern using get_, list_, create_, and check_. Singular nouns pair with single-item resources and plural nouns with collection endpoints, making the set predictable.

Tool Count5/5

Nine tools is well-scoped for a product information and export server. Each tool covers a meaningful part of the surface without redundancy or padding.

Completeness5/5

The tool set covers the full likely question space for the Yappy app: compatibility, requirements, pricing, features, FAQ, latest release, release history, and bulk corpus export. The async export pair provides a complete path to documentation content without leaving dead ends.

Resources