Skip to main content
Glama

Search the tarot deck

search_tarot_cards
Read-only

Search the 78-card Rider–Waite–Smith deck by name and return matching cards with the slugs the other tools take. Use this first when you only have a card name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesPart of a card name in any supported language, e.g. "cups", "lovers", "恋人".
languageNoLanguage for the answer, as an ISO code. One of: en, es, pt, fr, de, it, nl, da, no, fi, pl, hu, tr, ru, ja, ko, zh, zh-TW, th, vi, hi, id. Defaults to en.

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, which covers the safety profile. The description adds that it returns 'slugs the other tools take,' which is useful behavioral context about its output purpose. However, it doesn't disclose the return format, result count limits, or behavior on no-match queries. With annotations covering the read-only safety, a 3 is appropriate.

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 with zero filler. The first states the core action and output, the second gives crisp usage direction. Well front-loaded and to the point.

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 search/lookup tool with full schema parameter coverage, read-only annotations, and only 2 params, the description is complete. It explains what it does, what it returns (slugs for other tools), and when to use it. The absence of an output schema is compensated by the clear statement that it returns matching cards with slugs, which is sufficient for an agent to proceed.

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% — both parameters (query, language) have descriptions in the schema itself. The description adds 'part of a card name in any supported language' context for the query parameter and explains that the search is partial-match ('part of a card name'), which adds modest value beyond the schema. Baseline 3 is correct here as the description offers some extra nuance but the schema already does the heavy lifting.

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 states a specific verb+resource ('Search the 78-card Rider–Waite–Smith deck by name') and clearly distinguishes its purpose from the sibling tools (get_love_question_answer, get_tarot_card_love_meaning) by noting it 'return[s] matching cards with the slugs the other tools take.' This positions it as the lookup/bridge tool that precedes others.

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 gives explicit when-to-use guidance: 'Use this first when you only have a card name.' This clearly indicates it's the entry-point tool when only a name is known, contrasting with the sibling tools which consume the slugs it produces. This is strong, actionable usage direction.

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 serves a distinct purpose: answering common love-tarot questions, interpreting a specific card's love meaning, computing Venus's zodiac sign, and searching the deck. No two tools overlap in function.

Naming Consistency5/5

All tool names follow a consistent get_/search_ + noun pattern in snake_case. The verbs are clear and the resources are obvious, making the API predictable.

Tool Count5/5

Four tools is well-scoped for a specialized tarot/love oracle. Each tool covers a distinct aspect without redundancy or bloat.

Completeness4/5

The core workflow is covered: search cards, get card meanings, get answers to common questions, and compute Venus placement. Missing a random spread or daily reading generator, but this is not an obvious gap for the stated purpose.