Skip to main content
Glama

convergent-provider-directory

Search Providers

search_provider
Read-onlyIdempotent

Search the provider directory by name, specialty, and/or city. Returns a list of matching providers, each with an 'id' that can be passed to get_provider_details for the full record.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity to match (e.g. 'Durham').
nameNoFull or partial provider name to match (e.g. 'Jessica').
specialtyNoSpecialty to match (e.g. 'Pediatrics', 'Cardiology').
acceptingNewPatientsNoIf set, only return providers with this intake status.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds that it returns a list of matching providers with an id for follow-up, but does not disclose pagination, result limits, or whether results are sorted. No contradiction with annotations.

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 sentences, no filler. The main action and output are stated first, and the sibling pointer is a valuable second sentence. It is efficiently front-loaded.

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?

For a search tool with no required parameters and no output schema, the description covers the core workflow: search by filters and use the returned id for the detail tool. It does not mention that filters can be combined or that acceptingNewPatients is also a searchable criterion, but those are documented in the schema. The description is sufficiently 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 schema already documents all four parameters. The description repeats the three main search fields but does not add meaning beyond the schema; acceptingNewPatients is only in the schema. Baseline 3 applies.

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 the verb 'search' and names the provider directory as the resource, listing the filter criteria (name, specialty, city) and the output (list with id). It also distinguishes itself from sibling get_provider_details by positioning itself as the lookup step. This is a specific, non-tautological statement.

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?

The description states the tool searches a directory and instructs that the returned 'id' can be passed to get_provider_details for the full record. This implies the correct workflow: use search_provider to find providers and get_provider_details for details. However, it does not explicitly state when not to use this tool or conditions for choosing the alternative.

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

search_provider returns a list of matching providers, while get_provider_details returns a single full record by id. The two tools have clearly distinct purposes and are explicitly linked via the returned id.

Naming Consistency5/5

Both tool names use the same lowercase snake_case verb_noun convention: search_provider and get_provider_details. The verbs clearly indicate the action, and the nouns indicate the scope of the result.

Tool Count3/5

Two tools is minimal and borderline for a provider directory. The pair forms a logical search-then-detail workflow, but the server feels thin compared to a typical well-scoped toolset.

Completeness4/5

The read-only lookup workflow is covered: search to find providers and get details to retrieve full records. Minor gaps exist, such as no explicit list-all or browse-by-specialty operation, but agents can work around them via search.

Resources