Skip to main content
Glama

search_symptoms

Read-onlyIdempotent

Resolve what a person describes into AcuiQ symptom names — the first step before search_protocols. Plain description works ("trouble sleeping", "my lower back hurts"): filler words are stripped and the search retries on the clinical words, reporting which term matched. Set popular=true for trending symptoms instead. Always returns an object with a symptoms array, empty when nothing matched.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 12, max 50)
queryNoWhat the person is describing — a symptom name or a plain description (e.g. "knee pain", "I cannot sleep at night")
popularNoSet to true to get trending symptoms instead of searching

TDQS

A4.9/5.0
Behavior5/5

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

Annotations declare readOnlyHint and idempotentHint, but the description goes well beyond: it explains filler-word stripping and retrying on clinical words, that the matched term is reported, the popular alternation, and the guaranteed return shape with empty array behavior. This is rich behavioral context beyond annotation hints, with no contradiction.

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?

Four sentences with distinct purposes: purpose, natural-language handling, mode switch, and return shape. The most critical info is front-loaded, and every sentence carries meaning without redundancy. It is appropriately sized for the tool's complexity.

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?

Given the tool is simple (3 params, no output schema, no nested objects), the description covers all essential aspects: what it does, how it processes input, alternate behavior, and return contract. It even notes the empty-case result. Nothing an agent needs to invoke it correctly is missing.

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

Parameters4/5

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

Schema description coverage is 100%, so each parameter already has a clear description. The description adds value on the 'popular' parameter (explicit trending mode) and clarifies that 'query' can be a plain phrase. This is a slight enhancement over the baseline of 3, but not a full compensate since the schema already handles most semantics.

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 clearly states the tool resolves descriptions into AcuiQ symptom names and is the first step before search_protocols. It distinguishes itself from sibling search_protocols by explicitly naming the relationship and from get_symptom_detail by focus on name resolution. The verb 'resolve' and resource 'symptom names' are specific and unambiguous.

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?

It explicitly orders usage as the step before search_protocols, which tells an agent when to invoke it. It also provides a clear conditional for the popular parameter (trending vs. searching). This is enough to guide selection among siblings, though it doesn't enumerate negative cases, the positive guidance is strong.

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 distinct action: checkout, meridian listing, point resolution, symptom detail, protocol search, and symptom resolution. There is no overlap; even search_protocols and search_symptoms are clearly separated by input and purpose.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: create_checkout, get_meridians, get_point, get_symptom_detail, search_protocols, search_symptoms. No mixing of conventions or vague verbs.

Tool Count5/5

With 6 tools, the set is well-scoped for the server's purpose. Each tool covers a necessary function (purchase, catalogue browsing, point lookup, symptom lookup, protocol search, symptom resolution) without redundancy or bloat.

Completeness4/5

Core workflows are covered: resolve symptoms, search protocols, get point details, list meridians, and checkout. Minor gaps exist—no direct listing of all points or all symptoms beyond popular=true—but agents can work around by using search_symptoms and get_point with known codes.

Resources