_ registry / mcp + a2a streamable-http · checked 9h ago

hotel-bergsonne-booking

https://bergsonne-allgaeu.de

Registry code: 2c9d952953b355d2

api record

Direct booking server of Hotel Bergsonne Allgäu in Sonthofen-Imberg, Germany. Use get_hotel_details for operational facts (room category codes, check-in 15:00, check-out 10:30, contact) and get_fact_sheet for descriptive property data; get_addons lists bookable extras. Always call search_availability first, then get_price_quote for the chosen room category and the same dates: prices are per person per night in EUR, breakfast, VAT and city tax (Kurtaxe, EUR 3.50 per person per night) are already included and must never be added. Create a reservation with create_booking only after availability…

endpoint
https://bergsonne-allgaeu.de/api/booking-mcp
door code
dd81705a6dc16156
protocol
streamable-http ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
424ms

last good check

priced tools
0

of 6 tools

_ answered our checks, 90 days 9 checks · signed record
_ what it is for
used for
  • check hotel room availability
  • get a hotel price quote
  • book a hotel room
  • list bookable hotel extras
takes → gives
text → data
tools
5 reads1 changes data
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 6 tools
2 open 4 never probed 2 of 6 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • get_fact_sheet reads open 9h ago

    Fetch the full GIATA property fact sheet for Hotel Bergsonne Allgäu: rich descriptions, amenities, images, room classifications. German content only. This is marketing/classification data separate from operational hotel details.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "language": {
          "enum": [
            "de",
            "en",
            "nl"
          ],
          "type": "string",
          "description": "Preferred language for free-text fields (de, en, nl). Optional; codes, times and prices are language-independent."
        }
      },
      "additionalProperties": false
    }
    arguments 15 lines
  • get_hotel_details reads open 9h ago

    Fetch hotel operational data from the WBE system: room types with abbreviation codes (roomId), check-in/out times, contact information. For rich marketing descriptions, use get_fact_sheet instead.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "language": {
          "enum": [
            "de",
            "en",
            "nl"
          ],
          "type": "string",
          "description": "Preferred language for free-text fields (de, en, nl). Optional; codes, times and prices are language-independent."
        }
      },
      "additionalProperties": false
    }
    arguments 15 lines
  • create_booking changes data unknown never probed

    Create a hotel reservation at Hotel Bergsonne Allgäu. Call search_availability and get_price_quote for the same dates and room first: a stay that cannot be priced is rejected with NOT_AVAILABLE or INVALID_RATE, never confirmed at 0.00 EUR. roomId must be a room type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ). Requires dates, guest count, and complete customer details (name, email, phone, country). City tax (Kurtaxe) is already included in rates — do not add it. Optional addons use addonId from get_addons catalog. Set test: true for a sandbox dry run that validates everything without creating a reservation. Payment is requested after the booking was submitted via a secure payment link and is due no later than 7 days before arrival; cash is not accepted.

    mcp-tool

    {
      "type": "object",
      "required": [
        "roomId",
        "rateId",
        "checkIn",
        "checkOut",
        "adults",
        "customer"
      ],
      "properties": {
        "test": {
          "type": "boolean",
          "description": "Sandbox dry run. When true, all validations (availability, rate, guest data) run and nothing is reserved, no payment link is sent."
        },
        "addons": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "addonId"
            ],
            "properties": {
              "addonId": {
                "type": "string",
                "description": "Addon ID from get_addons catalog"
              },
              "quantity": {
                "type": "number",
                "description": "Quantity (default 1)"
              }
            }
          },
          "description": "Optional add-on extras. Use addonId from get_addons catalog. Prices are resolved server-side."
        },
        "adults": {
          "type": "number",
          "description": "Number of adults (>= 1)"
        },
        "rateId": {
          "type": "string",
          "description": "Rate ID from availability results"
        },
        "roomId": {
          "type": "string",
          "description": "Room type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ)"
        },
        "checkIn": {
          "type": "string",
          "description": "Arrival date"
        },
        "checkOut": {
          "type": "string",
          "description": "Departure date"
        },
        "children": {
          "type": "number",
          "description": "Number of children (default 0)"
        },
        "customer": {
          "type": "object",
          "required": [
            "firstName",
            "lastName",
            "email",
            "phone",
            "country"
          ],
          "properties": {
            "zip": {
              "type": "string"
            },
            "city": {
              "type": "string"
            },
            "email": {
              "type": "string"
            },
            "phone": {
              "type": "string",
              "description": "e.g. +49 170 1234567"
            },
            "address": {
              "type": "string"
            },
            "country": {
              "type": "string",
              "description": "2-letter code, e.g. DE"
            },
            "remarks": {
              "type": "string"
            },
            "lastName": {
              "type": "string"
            },
            "firstName": {
              "type": "string"
            },
            "salutation": {
              "type": "string"
            }
          },
          "description": "Booker details"
        },
        "idempotencyKey": {
          "type": "string",
          "description": "Client-generated key. Retrying with the same key returns the original result instead of creating a second reservation."
        },
        "additionalGuests": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "firstName",
              "lastName"
            ],
            "properties": {
              "lastName": {
                "type": "string"
              },
              "firstName": {
                "type": "string"
              }
            }
          },
          "description": "Additional guest names"
        }
      }
    }
    arguments 129 lines
  • search_availability reads unknown never probed

    Search real-time room availability and daily pricing for Hotel Bergsonne Allgäu. Returns dates with rates AND a roomTypes array. Use the roomId from roomTypes (e.g. KAPDZ, KDZ, KFZ, SDZ) for get_price_quote and create_booking. City tax (Kurtaxe) of 3.50 EUR/person/night is already included in all rates.

    mcp-tool

    {
      "type": "object",
      "required": [
        "checkIn",
        "checkOut",
        "adults"
      ],
      "properties": {
        "adults": {
          "type": "number",
          "description": "Number of adult guests"
        },
        "checkIn": {
          "type": "string",
          "description": "Arrival date (YYYY-MM-DD, DD.MM.YYYY, MM/DD/YYYY, or natural language)"
        },
        "checkOut": {
          "type": "string",
          "description": "Departure date (same formats)"
        },
        "children": {
          "type": "number",
          "description": "Number of children (optional, default 0)"
        }
      }
    }
    arguments 26 lines
  • get_price_quote reads unknown never probed

    Get a nightly price breakdown and total for a specific room at Hotel Bergsonne Allgäu. roomId must be a room type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ). City tax (Kurtaxe) of 3.50 EUR/person/night is already included in all rates.

    mcp-tool

    {
      "type": "object",
      "required": [
        "roomId",
        "checkIn",
        "checkOut"
      ],
      "properties": {
        "adults": {
          "type": "number",
          "description": "Number of adult guests"
        },
        "roomId": {
          "type": "string",
          "description": "Room type abbreviation code from search_availability results (e.g. KAPDZ, KDZ, KFZ, SDZ)"
        },
        "checkIn": {
          "type": "string",
          "description": "Arrival date"
        },
        "checkOut": {
          "type": "string",
          "description": "Departure date"
        }
      }
    }
    arguments 26 lines
  • get_addons reads unknown never probed

    Fetch the catalog of bookable add-on extras (e.g. wine, flowers, activities). Returns addonId, name, type, priceType, and unitAmount. Use addonId values when adding addons to create_booking.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "language": {
          "enum": [
            "de",
            "en",
            "nl"
          ],
          "type": "string",
          "description": "Preferred language for free-text fields (de, en, nl). Optional; codes, times and prices are language-independent."
        }
      },
      "additionalProperties": false
    }
    arguments 15 lines
_ try it over mcp through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/2c9d952953b355d2/badge.svg)](https://brick.blue/agent/2c9d952953b355d2)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we knowoff the mcp door
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.