Skip to main content
Glama

1820.ch – Telefonbuch Schweiz

Server Details

Swiss phone directory: search people and businesses, reverse number lookup, business categories.

If you are the author of this connector, you can claim ownership by verifying the domain or GitHub account it belongs to. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct operation: category browsing, full-text search, detail retrieval by ID, and reverse phone lookup. Descriptions explicitly cross-reference alternatives, leaving no ambiguity about which tool to use.

Naming Consistency5/5

All tool names use snake_case with a clear verb_noun structure (browse_, get_, reverse_, search_). The pattern is consistent and self-explanatory.

Tool Count5/5

Four tools cover the core read-only directory workflows without redundancy. Each tool has a clear purpose and the set is well-scoped for a phone directory lookup service.

Completeness4/5

The surface covers search, browse, detail retrieval, and reverse lookup, but lacks a way to discover valid category slugs or list available cantons/localities. These are minor gaps that agents can likely work around.

Available Tools

4 tools
browse_business_categoryBrowse a business categoryA
Read-onlyIdempotent
Inspect

Lists public directory entries in one business category, optionally narrowed to a locality/postcode/canton. Use search_swiss_directory instead for a free-text query.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoResponse language: de, fr, it, or en. Defaults to de.
limitNoMaximum number of results, 1-20.
categoryYesThe business category slug (e.g. "restaurant", "coiffeur", "sanitaer"). Valid slugs are the slug values in categories, as returned by get_directory_entry, or a top-level group slug such as "bau-handwerk".
locationNoLocality, postcode, or canton (e.g. "Baden", "5400", "ZH") to narrow the category to. Always put a place name here.

Output Schema

ParametersJSON Schema
NameRequiredDescription
sourceYes
resultsYes
retrieved_atYes
advertising_block_noteYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description still adds useful context by specifying that results are public directory entries and that narrowing is optional rather than required. It does not discuss pagination or result ordering, but with annotations and a 1-20 limit in the schema the remaining gap is small.

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, zero filler, and the core behavior plus scope constraint is front-loaded before the sibling routing advice. Every clause carries information an agent needs.

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?

With full schema coverage, annotations, and an output schema present, the description need not explain return values or formats. It covers purpose, scoping, and the alternative route, leaving only minor edge cases (e.g., invalid slug handling) unaddressed.

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 baseline is 3; the schema already documents category slugs, lang, limit, and location formats. The description adds only a light reinforcement of the optional location narrowing, so it does not meaningfully exceed what the schema provides.

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 and resource ('Lists public directory entries in one business category') plus the precise scope narrowing (locality/postcode/canton). It also explicitly names the sibling it is not, so an agent can distinguish it from search_swiss_directory without reading either schema.

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?

The description gives an explicit routing rule: use this tool for category browsing and 'use search_swiss_directory instead for a free-text query.' That is a clear when-to-use-this vs. when-to-use-the-alternative statement, with the selecting condition named.

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

get_directory_entryGet a directory entryA
Read-onlyIdempotent
Inspect

Fetches the full public detail for one directory entry by its entry_id (public_id), including phone numbers, opening hours, and links when the entry has them. Use get_directory_entry for phone numbers and opening hours; use search_swiss_directory or browse_business_category to find an entry_id first.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoResponse language: de, fr, it, or en. Defaults to de.
entry_idYesThe entry's public_id, as returned by search_swiss_directory, browse_business_category, or reverse_phone_lookup.

Output Schema

ParametersJSON Schema
NameRequiredDescription
entryYes
sourceYes
retrieved_atYes
advertising_block_noteYes

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safe-read profile is covered by structured data. The description adds one useful behavioral detail ('when the entry has them', i.e. optional fields may be absent) and implies the detail is public, but discloses nothing about error behavior for a bad entry_id or rate limits.

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 tight sentences, with the core fetch behavior and its distinguishing payload front-loaded before the routing sentence. No filler or repetition.

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?

With an output schema present and annotations covering safety, the description needs only purpose and routing, both of which it supplies. It stops short of covering failure modes (invalid/expired entry_id) or pagination, which is a minor gap given the otherwise complete structured metadata.

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 both parameters (entry_id provenance, lang enum plus default) are already fully documented in the schema. The description's restatement of entry_id/public_id adds no syntax or format detail beyond it, so the 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?

States a specific verb (fetches) and resource (full public detail for one directory entry) and names the identifier used (entry_id/public_id). It also enumerates the payload (phone numbers, opening hours, links), so the agent knows exactly what this returns versus the sibling search/browse tools.

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 routes usage: 'Use get_directory_entry for phone numbers and opening hours; use search_swiss_directory or browse_business_category to find an entry_id first.' This tells the agent both the selecting condition and the required prerequisite step, with the alternatives named.

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

reverse_phone_lookupReverse phone lookupA
Read-onlyIdempotent
Inspect

Looks up the public directory entry (or entries) associated with a Swiss phone number. Accepts national ("079 123 45 67"), E.164 ("+41791234567"), or compact notation. Returns an empty result list when the number has no findable public listing.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoResponse language: de, fr, it, or en. Defaults to de.
phone_numberYesThe phone number to look up, in any common Swiss notation (national, E.164, or compact).

Output Schema

ParametersJSON Schema
NameRequiredDescription
sourceYes
resultsYes
retrieved_atYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already cover readOnlyHint and idempotentHint, so safety is off the table. The description adds genuine behavioral value by disclosing the empty-result-list outcome when no public listing exists — an edge case not derivable from annotations and only implied by the output schema.

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 tightly written sentences, no filler, with the core operation and accepted formats front-loaded before the edge-case note.

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?

With annotations covering the safety profile, a full-coverage input schema, and an output schema, the description only needed to add the non-obvious empty-result behavior — which it does. 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.

Parameters3/5

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

Schema description coverage is 100%, so both parameters are already documented in the schema. The description restates the accepted phone notations (duplicating the phone_number description) and adds nothing about the lang enum. Baseline 3 applies when the schema does the heavy lifting.

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 (looks up) and resource (public directory entry) scoped to Swiss phone numbers, with the accepted input notations named. An agent can distinguish this from get_directory_entry or search_swiss_directory without opening the schemas.

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?

Usage is implied by the name and by the 'reverse lookup' framing, but the description never states when to prefer this over search_swiss_directory or get_directory_entry, nor any prerequisites. Adequate but no explicit routing.

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

search_swiss_directorySearch the Swiss directoryA
Read-onlyIdempotent
Inspect

Full-text search over the Swiss public phone/business directory (1820.ch). Matches ALL words in query, so a short keyword works best; put any place name in location, not query. For "business type X in place Y", browse_business_category with a category slug is an alternative. Use get_directory_entry for phone numbers and opening hours of a specific result.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoResponse language: de, fr, it, or en. Defaults to de.
limitNoMaximum number of results, 1-20.
queryYesOne short keyword: a person's or company name, or ONE business type (e.g. "Müller", "Migros", "Coiffeur"). Every word must match, so no sentences or extra adjectives. Never put a place name here — use location instead.
locationNoLocality, postcode, or canton (e.g. "Baden", "5400", "ZH") to narrow the search. Always put a place name here, never in query.
entry_typeNoRestrict results to person, business, or all entries.all

Output Schema

ParametersJSON Schema
NameRequiredDescription
sourceYes
resultsYes
retrieved_atYes
advertising_block_noteYes

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnlyHint=true, idempotentHint=true), so the description correctly focuses on behavior beyond that: the AND-matching semantics of 'matches ALL words' is a genuinely useful disclosure that explains why short keywords succeed. It stops short of describing result ordering or what a truncated/no-match response looks like, which keeps it from a 5.

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?

Three sentences, each load-bearing: purpose/scope first, then query-matching behavior and the query/location split, then alternatives and the deeper-lookup sibling. No restatement of the title and no filler.

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?

An output schema exists, so return values need no explanation. With 100% parameter coverage, annotations carrying the safety profile, and the description covering scope, matching semantics, and sibling routing, nothing an agent needs to call this 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 coverage is 100%, so the baseline is 3, but the description adds a cross-parameter constraint the schema cannot express: place names belong in location and never in query, plus the AND-matching rule that constrains query construction. That is real added meaning over per-field 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?

States a specific verb and resource ('Full-text search over the Swiss public phone/business directory (1820.ch)') and immediately distinguishes itself from siblings by naming both browse_business_category and get_directory_entry with their respective roles. An agent can route without opening any schema.

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?

Gives explicit when-to-use guidance ('short keyword works best'), a placement rule ('put any place name in location, not query'), and a named alternative with the condition that selects it ('For "business type X in place Y", browse_business_category with a category slug is an alternative'). This is the full when/when-not/alternative triad.

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.

  1. 4 tool updates
    • Changedbrowse_business_category4 fields changed
      • addedInput schema / properties / category / maxLength
        Added value: +200
      • addedInput schema / properties / lang
        Added value: +{
        +  "description": "Response language: de, fr, it, or en. Defaults to de.",
        +  "enum": [
        +    "de",
        +    "fr",
        +    "it",
        +    "en"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / location / description
        Previous value: -"Optional locality, postcode, or canton name to narrow the category to."New value: +"Locality, postcode, or canton (e.g. \"Baden\", \"5400\", \"ZH\") to narrow the category to. Always put a place name here."
      • addedInput schema / properties / location / maxLength
        Added value: +200
    • Changedget_directory_entry1 field changed
      • addedInput schema / properties / entry_id / maxLength
        Added value: +32
    • Changedreverse_phone_lookup2 fields changed
      • addedInput schema / properties / lang
        Added value: +{
        +  "description": "Response language: de, fr, it, or en. Defaults to de.",
        +  "enum": [
        +    "de",
        +    "fr",
        +    "it",
        +    "en"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / phone_number / maxLength
        Added value: +40
    • Changedsearch_swiss_directory5 fields changed
      • addedInput schema / properties / lang
        Added value: +{
        +  "description": "Response language: de, fr, it, or en. Defaults to de.",
        +  "enum": [
        +    "de",
        +    "fr",
        +    "it",
        +    "en"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / location / description
        Previous value: -"Optional locality, postcode, or canton name to narrow the search."New value: +"Locality, postcode, or canton (e.g. \"Baden\", \"5400\", \"ZH\") to narrow the search. Always put a place name here, never in query."
      • addedInput schema / properties / location / maxLength
        Added value: +200
      • changedInput schema / properties / query / description
        Previous value: -"Free-text search term: a name, company, or category keyword."New value: +"One short keyword: a person's or company name, or ONE business type (e.g. \"Müller\", \"Migros\", \"Coiffeur\"). Every word must match, so no sentences or extra adjectives. Never put a place name here — use location instead."
      • addedInput schema / properties / query / maxLength
        Added value: +200
  2. 4 tool updates
    • First observedbrowse_business_category
    • First observedget_directory_entry
    • First observedreverse_phone_lookup
    • First observedsearch_swiss_directory

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Search and retrieve detailed information about Swiss companies from the official Zefix register, including company profiles, corporate structures, and SHAB publications.
    6
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    The most comprehensive signal intelligence on Swiss businesses — 800K+ companies with people, FINMA/SRO regulatory data, building permits, procurement tenders, and AI-enriched profiles from the official commercial register.
    -
  • A
    license
    D
    quality
    D
    maintenance
    Provides Swiss weather forecast data, allowing users to search for Swiss locations and get detailed hourly and daily weather forecasts.
    2
    2
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Provides access to the Swiss Federal Commercial Register (Zefix) for company search, verification, and reference data, enabling natural language queries for public administration use cases.
    9
    39 PyPI
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources