Skip to main content
Glama

service-provider-index

Server Details

Find verified businesses & service providers by trade and area. Returns structured provider data.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: searching providers, fetching details by ID, and listing trades. No functional overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscores: find_providers, get_provider, list_trades.

Tool Count4/5

With only 3 tools, the set is minimal but well-scoped for a read-only provider index. It covers the essential operations without bloat.

Completeness4/5

The surface covers search, detail retrieval, and trade listing. Minor gaps like pagination or listing all providers without filters are not critical for the core functionality.

Available Tools

3 tools
find_providersA
Read-only
Inspect

Find service providers by trade and/or area. Area can be a city name or region name. Returns business info: name, trade, trades, region, company size, target audiences, website, and description.

ParametersJSON Schema
NameRequiredDescriptionDefault
areaNoCity, region, or postal code the provider must serve, e.g. 'København' or '2100'
tradeNoTrade to search for, e.g. 'VVS-installatør' or 'Elektriker'
Behavior3/5

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

The description states it returns business info, which adds context beyond the readOnlyHint annotation. However, it does not disclose potential behavioral traits like pagination, result limits, or exact matching semantics, which would be helpful for a search tool.

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?

The description is two sentences, front-loading the action and briefly listing return fields. No redundant or unnecessary words; every sentence adds value.

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 search tool with two optional parameters, read-only, and no output schema, the description covers what it does and what it returns. It could be improved by mentioning that trade and area can be combined, but overall it is fairly 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?

Input schema coverage is 100% with descriptions for both parameters. The description adds minor clarification that area can be a city or region name, but this largely overlaps with the schema. No significant new semantics beyond schema descriptions.

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 title: 'Find service providers by trade and/or area.' It specifies the resource (service providers) and action (find), and the list of returned fields distinguishes it from siblings like get_provider (single provider) and list_trades (trade list).

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 the tool can be used by trade and/or area but does not explicitly state when to use it vs alternatives. No guidance is given on when not to use it or which sibling to choose for specific needs, only implied by the context of the sibling names.

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

get_providerA
Read-only
Inspect

Fetch full details for a single provider by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesProvider ID, e.g. 'dk-001'
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description need not repeat safety. It adds 'full details' but does not elaborate on what those details include. No contradictions.

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 extraneous words, clearly and efficiently communicates the tool's core function.

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 single-parameter tool with no output schema and read-only annotation, the description adequately covers its purpose. 'Full details' is slightly vague but acceptable given the tool's simplicity.

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?

The input schema describes the 'id' parameter and the description provides an example ('dk-001'), adding useful formatting 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', the resource 'full details for a single provider', and the method 'by its ID'. It effectively distinguishes from sibling tools like find_providers (likely for multiple providers) and list_trades (different resource).

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 implies usage when a specific provider ID is known and full details are needed. It does not explicitly state when not to use or direct to alternatives, but the sibling context provides implicit guidance.

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

list_tradesA
Read-only
Inspect

Return all trades and service categories available in the index (e.g. VVS-installatør, Elektriker). Call this first if you are unsure which trade term to use when searching.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations provide readOnlyHint=true, so the read-only behavior is already set. The description adds that it returns all trades and service categories, which is consistent. However, it does not mention if the list is sorted, paginated, or limited, but given zero parameters and likely small set, this is minor.

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: first states the action with examples, second provides usage guidance. No wasted words, front-loaded with purpose.

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?

Given low complexity (0 params, read-only, no output schema), the description covers the essentials. It could explicitly state the output is a list of strings, but examples suffice. The usage advice adds completeness.

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?

No parameters exist, and schema coverage is 100%. The description does not need to add parameter details, so baseline 4 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 clearly states it returns all trades and service categories, with concrete examples (VVS-installatør, Elektriker). It distinguishes itself from siblings by suggesting to call this first when unsure of the trade term, making the purpose specific and differentiated.

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?

Explicitly advises 'Call this first if you are unsure which trade term to use when searching.' This provides clear when-to-use guidance and implies alternatives (find_providers, get_provider) for known terms.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources