Skip to main content
Glama

service-provider-index

get_provider

Read-only

Fetch full details for a single provider by its ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProvider ID, e.g. 'dk-001'

Schema Changelog

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

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is known. The description adds 'full details' but does not disclose error behavior or data freshness. Not contradictory.

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?

Single sentence with no redundant words, directly states the tool's purpose and key constraint.

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 simple one-parameter fetch tool without output schema, the description is fairly complete. It explains what it does and what the input is, though could mention that it returns the provider object.

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% with the 'id' parameter described with an example. The description adds no additional parameter guidance beyond the schema.

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?

Description clearly states the verb 'Fetch' and resource 'provider', with the key constraint 'by its ID'. It distinguishes from siblings 'find_providers' and 'list_trades' which suggest search or listing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use when you have a specific provider ID, but does not explicitly guide when to use this tool vs its siblings, nor when not to use it.

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

Each tool performs a distinct function: finding providers by criteria, fetching details by ID, and listing available trades. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in camelCase, making the purpose clear and predictable.

Tool Count5/5

Three tools are perfectly scoped for a service provider index, covering search, detail retrieval, and trade listing without bloat or deficiency.

Completeness5/5

The tool set provides complete coverage for the domain: discovering available trades, searching for providers, and retrieving full details. No obvious gaps.

Resources