_ registry / mcp streamable-http · checked 2h ago

trip1

https://trip1.com

Registry code: 665122e665bdfae6

api record

The current date is at least 2026-09-26 — never infer it from the conversation or from your training data. The check_in floor is the destination's own calendar day, which can be a day ahead of this; a check_in below it is rejected, not silently empty, and the rejection tells you what that day is. trip1 hotel booking API. Any time after search_hotels, ask_about_hotel answers a yes-or-no question about one hotel from what its guests said ("is it quiet at night?"); use it rather than guessing from the hotel's description. The booking flow is four tools in order: 1. search_hotels - Find hotels by…

endpoint
https://trip1.com/api/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, 30 days
100%

90 days 100%· all time 100%

latency
177ms

last good check

priced tools
0

of 5 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ 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
5 never probed 0 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.

  • purchase_hotel unknown never probed

    Book a hotel room by providing guest details and a rate ID from get_hotel_details. Creates a guest profile, adds the room to a cart, and initiates checkout. Returns a payment_url and an x402 payment challenge by default (USDC on Base). Set payment_service to 'coingate' to return a browser-based crypto payment URL instead. The booking is confirmed once payment settles; poll get_order_details to check status.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "rate_id",
        "first_name",
        "last_name",
        "email",
        "phone"
      ],
      "properties": {
        "email": {
          "type": "string",
          "description": "Guest's email address"
        },
        "phone": {
          "type": "string",
          "description": "Guest's phone number (e.g., +44123456789)"
        },
        "title": {
          "enum": [
            "MR",
            "MRS",
            "MS",
            "MISS"
          ],
          "type": "string",
          "description": "Guest's title: MR, MRS, MS, or MISS (default: MR)"
        },
        "context": {
          "type": "string",
          "maxLength": 200,
          "description": "Why are you calling this tool? Describe the user's underlying goal in one short sentence — not the tool name. Never include names, emails, phones, or prices. Always pass this. Used for analytics only; never shown to the user."
        },
        "rate_id": {
          "type": "string",
          "description": "Signed rate ID from get_hotel_details response"
        },
        "last_name": {
          "type": "string",
          "description": "Guest's last name"
        },
        "first_name": {
          "type": "string",
          "description": "Guest's first name"
        },
        "nationality": {
          "type": "string",
          "description": "Guest's nationality as ISO 3166-1 alpha-2 code (default: GB)"
        },
        "price_currency": {
          "type": "string",
          "description": "Payment currency (default: USD for x402, EUR for coingate). Supported: EUR, USD, GBP, PLN, CZK, HUF, SEK, NOK, DKK"
        },
        "payment_service": {
          "enum": [
            "x402",
            "coingate"
          ],
          "type": "string",
          "description": "Payment method: x402 (USDC on Base, default) or coingate (browser-based crypto)"
        }
      },
      "additionalProperties": false
    }
    arguments 65 lines
  • get_order_details unknown never probed

    Get the current state of an order. Returns payment status, booking state, and item details. Poll until ready is true to confirm the booking is complete.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "cart_id"
      ],
      "properties": {
        "cart_id": {
          "type": "string",
          "description": "The cart_id from purchase_hotel response"
        },
        "context": {
          "type": "string",
          "maxLength": 200,
          "description": "Why are you calling this tool? Describe the user's underlying goal in one short sentence — not the tool name. Never include names, emails, phones, or prices. Always pass this. Used for analytics only; never shown to the user."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • search_hotels unknown never probed

    Search for available hotels by destination and dates. Returns a list of matching hotels with pricing, images, and booking links. Occupancy is fixed at 2 adults in one room and cannot be set. If the user asked for a different party size, tell them these prices are for 2 adults rather than presenting them as a quote for their group. Always include the hotel name, booking link, and image for each hotel in your response.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "destination",
        "check_in",
        "check_out"
      ],
      "properties": {
        "context": {
          "type": "string",
          "maxLength": 200,
          "description": "Why are you calling this tool? Describe the user's underlying goal in one short sentence — not the tool name. Never include names, emails, phones, or prices. Always pass this. Used for analytics only; never shown to the user."
        },
        "sort_by": {
          "enum": [
            "relevance",
            "price",
            "rating",
            "distance"
          ],
          "type": "string",
          "description": "Sort results by: price, rating, distance, or relevance (default)"
        },
        "check_in": {
          "type": "string",
          "description": "Check-in date in YYYY-MM-DD format. Must be today or later in the destination's own timezone. Do not assume the current year — the server instructions state today's date; a past date is rejected, and the rejection tells you the destination's today."
        },
        "check_out": {
          "type": "string",
          "description": "Check-out date in YYYY-MM-DD format. Must be after check_in."
        },
        "sort_order": {
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "description": "Sort order: asc (default) or desc"
        },
        "destination": {
          "type": "string",
          "description": "Destination name (e.g., 'London', 'Paris, France', 'Vilnius')"
        }
      },
      "additionalProperties": false
    }
    arguments 47 lines
  • get_hotel_details unknown never probed

    Get rooms and rates for a hotel. Pass the hotel id from search_hotels results. Returns rate IDs needed for purchase_hotel. Each rate states its refundability and, when refundable, the cancellation deadline — quote these rather than inferring refund terms. When prices_changed is true, the price search_hotels quoted for this hotel is no longer the one on offer — tell the user prices changed rather than presenting these rates as the same quote.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The hotel id from search_hotels results"
        },
        "context": {
          "type": "string",
          "maxLength": 200,
          "description": "Why are you calling this tool? Describe the user's underlying goal in one short sentence — not the tool name. Never include names, emails, phones, or prices. Always pass this. Used for analytics only; never shown to the user."
        }
      },
      "additionalProperties": false
    }
    arguments 19 lines
  • ask_about_hotel unknown never probed

    Answer a yes-or-no question about a hotel from what its guests said, such as "is it quiet at night?" or "is the breakfast good?". Ask one thing per call, and turn an open question into a yes-or-no one ("what is the breakfast like?" becomes "is the breakfast good?"). Pass the hotel id from search_hotels results. Returns how many guest review summaries say yes, no or mixed, with a few of them. Report it as what guests found, with the counts. When enough_evidence is false, say few guests mentioned it rather than drawing a conclusion. It knows only what guests reported, not the hotel's facilities or policies.

    mcp-tool

    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "id",
        "question"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The hotel id from search_hotels results"
        },
        "context": {
          "type": "string",
          "maxLength": 200,
          "description": "Why are you calling this tool? Describe the user's underlying goal in one short sentence — not the tool name. Never include names, emails, phones, or prices. Always pass this. Used for analytics only; never shown to the user."
        },
        "question": {
          "type": "string",
          "pattern": "\\S",
          "maxLength": 200,
          "description": "One yes-or-no question about the hotel, such as \"is it quiet at night?\""
        }
      },
      "additionalProperties": false
    }
    arguments 26 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/665122e665bdfae6/badge.svg)](https://brick.blue/agent/665122e665bdfae6)

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.