_ registry / mcp streamable-http · checked 12m ago

Campiamo Campsites

https://campiamo.com

Registry code: 3f4ee81761644a28

api record

Campiamo Campsites lets you find and book independent campsites, glamping sites and holiday parks that use Campiamo: every site on the Campiamo directory and every site whose website Campiamo hosts (mostly UK, France, Spain, Australia and New Zealand). Flow: search_campsites (with dates and party size if known) → get_campsite for details → check_availability → optionally get_quote for extras or a discount code → start_booking, which returns a hosted checkout link. You never take payment: the guest pays the campsite directly on that link, and nothing is reserved until they do. Campsites that…

endpoint
https://campiamo.com/mcp
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
100%
latency
223ms

last good check

priced tools
0

of 5 tools

_ 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 5 tools
1 open 4 never probed 1 of 5 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.

  • search_campsites open 12m ago

    Find campsites, glamping sites and holiday parks that use Campiamo (the public directory plus every Campiamo-hosted campsite website). Filter by free text (name, town, county, country, description), country, amenities and, with dates, live availability and total stay price for the party. Returns each campsite's slug for the other tools.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "dogs": {
          "type": "integer",
          "default": 0,
          "maximum": 20,
          "minimum": 0,
          "description": "Number of dogs."
        },
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 50,
          "minimum": 1
        },
        "query": {
          "type": "string",
          "maxLength": 100,
          "description": "Free text: a place, region, campsite name or keyword such as \"lake\" or \"glamping\"."
        },
        "adults": {
          "type": "integer",
          "default": 2,
          "maximum": 50,
          "minimum": 1,
          "description": "Number of adults."
        },
        "country": {
          "type": "string",
          "maxLength": 60,
          "description": "Country name or ISO code, e.g. \"UK\", \"France\", \"NZ\"."
        },
        "check_in": {
          "type": "string",
          "format": "date",
          "description": "Arrival date, YYYY-MM-DD."
        },
        "children": {
          "type": "integer",
          "default": 0,
          "maximum": 50,
          "minimum": 0,
          "description": "Number of children (under 18)."
        },
        "amenities": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Facilities that must be present, e.g. [\"electric hook-up\", \"showers\", \"dogs\"]."
        },
        "check_out": {
          "type": "string",
          "format": "date",
          "description": "Departure date, YYYY-MM-DD. Must be after check_in."
        }
      },
      "additionalProperties": false
    }
    arguments 60 lines
  • get_campsite unknown never probed

    Full details of one campsite: description, photos, check-in times, open season, every accommodation type with prices and rules, optional extras, the questions the campsite asks at booking, payment and deposit terms, and recent reviews.

    mcp-tool

    {
      "type": "object",
      "required": [
        "campsite"
      ],
      "properties": {
        "campsite": {
          "type": "string",
          "description": "The campsite slug, as returned by search_campsites."
        }
      },
      "additionalProperties": false
    }
    arguments 13 lines
  • check_availability unknown never probed

    Live availability at one campsite for a stay and party. Returns the accommodation types that can take the party with the total price and the amount due at checkout, and explains why the others cannot (fully booked, minimum stay, adults only, no dogs).

    mcp-tool

    {
      "type": "object",
      "required": [
        "campsite",
        "check_in",
        "check_out"
      ],
      "properties": {
        "dogs": {
          "type": "integer",
          "default": 0,
          "maximum": 20,
          "minimum": 0,
          "description": "Number of dogs."
        },
        "adults": {
          "type": "integer",
          "default": 2,
          "maximum": 50,
          "minimum": 1,
          "description": "Number of adults."
        },
        "campsite": {
          "type": "string",
          "description": "The campsite slug, as returned by search_campsites."
        },
        "check_in": {
          "type": "string",
          "format": "date",
          "description": "Arrival date, YYYY-MM-DD."
        },
        "children": {
          "type": "integer",
          "default": 0,
          "maximum": 50,
          "minimum": 0,
          "description": "Number of children (under 18)."
        },
        "check_out": {
          "type": "string",
          "format": "date",
          "description": "Departure date, YYYY-MM-DD. Must be after check_in."
        }
      },
      "additionalProperties": false
    }
    arguments 46 lines
  • get_quote unknown never probed

    An itemised price for one accommodation, stay and party, including chosen extras and any discount or voucher code. Use it to show the guest the exact total and the amount payable now before starting the booking.

    mcp-tool

    {
      "type": "object",
      "required": [
        "campsite",
        "accommodation_id",
        "check_in",
        "check_out",
        "adults"
      ],
      "properties": {
        "dogs": {
          "type": "integer",
          "default": 0,
          "maximum": 20,
          "minimum": 0,
          "description": "Number of dogs."
        },
        "adults": {
          "type": "integer",
          "default": 2,
          "maximum": 50,
          "minimum": 1,
          "description": "Number of adults."
        },
        "extras": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "extra_id"
            ],
            "properties": {
              "adults": {
                "type": "integer",
                "minimum": 0,
                "description": "For per-person extras: how many adults."
              },
              "choice": {
                "type": "string",
                "description": "One of the extra's choices, when it has them."
              },
              "children": {
                "type": "integer",
                "minimum": 0,
                "description": "For per-person extras: how many children."
              },
              "extra_id": {
                "type": "string"
              },
              "quantity": {
                "type": "integer",
                "default": 1,
                "minimum": 1
              }
            }
          },
          "description": "Optional extras from get_campsite (electric hook-up, firewood, late checkout...)."
        },
        "campsite": {
          "type": "string",
          "description": "The campsite slug, as returned by search_campsites."
        },
        "check_in": {
          "type": "string",
          "format": "date",
          "description": "Arrival date, YYYY-MM-DD."
        },
        "children": {
          "type": "integer",
          "default": 0,
          "maximum": 50,
          "minimum": 0,
          "description": "Number of children (under 18)."
        },
        "check_out": {
          "type": "string",
          "format": "date",
          "description": "Departure date, YYYY-MM-DD. Must be after check_in."
        },
        "voucher_code": {
          "type": "string",
          "maxLength": 50,
          "description": "A gift voucher code, if the campsite sells them."
        },
        "discount_code": {
          "type": "string",
          "maxLength": 50,
          "description": "A promotional code the guest has, if the campsite accepts them."
        },
        "accommodation_id": {
          "type": "string",
          "description": "accommodation_id from check_availability or get_campsite."
        }
      },
      "additionalProperties": false
    }
    arguments 96 lines
  • start_booking unknown never probed

    Start a booking and get a secure checkout link for the guest. Nothing is reserved until the guest pays on that link (valid 24 hours). Only works at campsites that take payment online (assistant_can_book is true); elsewhere send the guest to the booking_url to book themselves. Requires the guest's name and email, which the campsite uses for the confirmation. Confirm every detail with the guest first. Rate limited.

    mcp-tool

    {
      "type": "object",
      "required": [
        "campsite",
        "accommodation_id",
        "check_in",
        "check_out",
        "adults",
        "guest"
      ],
      "properties": {
        "dogs": {
          "type": "integer",
          "default": 0,
          "maximum": 20,
          "minimum": 0,
          "description": "Number of dogs."
        },
        "guest": {
          "type": "object",
          "required": [
            "name",
            "email"
          ],
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 255,
              "description": "The guest's full name."
            },
            "email": {
              "type": "string",
              "format": "email",
              "description": "Where the confirmation is sent."
            },
            "phone": {
              "type": "string",
              "maxLength": 50
            }
          }
        },
        "notes": {
          "type": "string",
          "maxLength": 1000,
          "description": "A message for the campsite (arrival time, requests)."
        },
        "adults": {
          "type": "integer",
          "default": 2,
          "maximum": 50,
          "minimum": 1,
          "description": "Number of adults."
        },
        "extras": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "extra_id"
            ],
            "properties": {
              "adults": {
                "type": "integer",
                "minimum": 0,
                "description": "For per-person extras: how many adults."
              },
              "choice": {
                "type": "string",
                "description": "One of the extra's choices, when it has them."
              },
              "children": {
                "type": "integer",
                "minimum": 0,
                "description": "For per-person extras: how many children."
              },
              "extra_id": {
                "type": "string"
              },
              "quantity": {
                "type": "integer",
                "default": 1,
                "minimum": 1
              }
            }
          },
          "description": "Optional extras from get_campsite (electric hook-up, firewood, late checkout...)."
        },
        "answers": {
          "type": "object",
          "description": "Answers to the campsite's booking_questions from get_campsite, keyed by question id. Required questions must be answered.",
          "additionalProperties": true
        },
        "campsite": {
          "type": "string",
          "description": "The campsite slug, as returned by search_campsites."
        },
        "check_in": {
          "type": "string",
          "format": "date",
          "description": "Arrival date, YYYY-MM-DD."
        },
        "children": {
          "type": "integer",
          "default": 0,
          "maximum": 50,
          "minimum": 0,
          "description": "Number of children (under 18)."
        },
        "check_out": {
          "type": "string",
          "format": "date",
          "description": "Departure date, YYYY-MM-DD. Must be after check_in."
        },
        "child_ages": {
          "type": "array",
          "items": {
            "type": "integer",
            "maximum": 17,
            "minimum": 0
          },
          "description": "One age per child, if known."
        },
        "voucher_code": {
          "type": "string",
          "maxLength": 50,
          "description": "A gift voucher code, if the campsite sells them."
        },
        "discount_code": {
          "type": "string",
          "maxLength": 50,
          "description": "A promotional code the guest has, if the campsite accepts them."
        },
        "accommodation_id": {
          "type": "string",
          "description": "accommodation_id from check_availability or get_campsite."
        }
      },
      "additionalProperties": false
    }
    arguments 139 lines
_ try it 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/3f4ee81761644a28/badge.svg)](https://brick.blue/agent/3f4ee81761644a28)

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 know
card completeness
90%

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.