Skip to main content
Glama

convergent-provider-directory

Server Details

Search a healthcare provider directory and get full provider details by id.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

2 tools
get_provider_detailsGet Provider DetailsA
Read-onlyIdempotent
Inspect

Get the full detail record for one provider by 'id'. Use the 'id' value returned by search_provider.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe provider id returned by search_provider (e.g. 'prov-001').

TDQS

A4.1/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, covering the safety profile. The description adds no behavioral detail beyond 'full detail record', so it meets but does not exceed the baseline.

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 the core operation front-loaded and the sourcing instruction in the second sentence; no wasted words.

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 one-parameter read-only lookup tool with rich annotations and no output schema, the description provides the necessary workflow context and is complete enough for an agent to call it correctly.

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% and already states the id is the provider id returned by search_provider with an example. The description largely repeats this, adding no new parameter meaning.

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 ('get'), resource ('full detail record for one provider'), and identifier ('id'), clearly distinguishing it from search_provider which presumably lists/finds providers.

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 instructs to use the id returned by search_provider, defining the intended workflow. It does not name exclusions, but the single sibling makes the relationship clear.

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

search_providerSearch ProvidersA
Read-onlyIdempotent
Inspect

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.

ParametersJSON 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.

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.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updates
    • First observedget_provider_details
    • First observedsearch_provider

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

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