Myrmigo
Travel and rental booking tasks: official sites, who services a booking, where you must act
Should I use this
Quality & Safety
Findings (1)
- LOWin find_website_task_guide
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"myrmigo": {
"command": "npx",
"args": [
"myrmigo-mcp"
]
}
}
}Runnable packages
0.1.0stdioRemote endpoints
https://mcp.myrmigo.com/mcpstreamable-httpWhat it can do
Tool inventory
Tools (2)
🟢find_website_task_guide(task, where, booked_via)
Use this when a traveler wants to book with a named airline, ferry, hotel, vehicle-rental or booking company, or to do something on their own booking there, such as changing or cancelling it, online check-in, a boarding pass or e-ticket, bags or seats, a refund, or which company services a booking bought elsewhere. Returns the official site and entry page, the company's own booking or service channels, which company services the booking, dated fees and rules with sources, what to have ready, and where the traveler must act personally. Also useful before opening the site in a browser. It does not search fares or availability and does not book itself. Read-only; stores nothing about the user.
Input Schema
{
"type": "object",
"properties": {
"task": {
"type": "string",
"description": "One id, or a short English phrase if none fits: flight.change flight.cancel flight.name_correction flight.disruption checkin.online boarding_pass.get baggage.add seat.select assistance.request stay.change_dates stay.change_guests stay.cancel ferry.change ferry.cancel ferry.eticket ferry.disruption booking.find refund.request refund.status invoice.get claim.compensation account.update_contact voucher.redeem trip.book rental.book rental.status rental.change rental.cancel rental.extend dev.deploy_app dev.add_custom_domain dev.set_secret dev.create_repo dev.protect_branch dev.publish_package dev.create_token"
},
"where": {
"description": "Site, brand, or page URL without its query; omit on email, search or blank pages.",
"type": [
"string",
"null"
]
},
"booked_via": {
"description": "Only if booked via another site or agent: its name or domain.",
"type": [
"string",
"null"
]
}
},
"required": [
"task"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢check_flight_compensation(flight_date, from, to, carrier, event, ...)
Use this when a traveler's flight was cancelled, delayed, overbooked or downgraded and they ask what they are owed or their options: compensation, a refund or care. EU261/UK261 check: verdict with the rule, amount, what the airline owes now, facts that would change it, where the traveler claims (airline, then national enforcement body), evidence. Flights only, not ferries. Dated official sources; stores nothing about the traveler and submits nothing. Not legal advice.
Input Schema
{
"type": "object",
"properties": {
"flight_date": {
"type": "string",
"description": "Scheduled departure, YYYY-MM-DD"
},
"from": {
"type": "string",
"description": "IATA airport where the booking starts"
},
"to": {
"type": "string",
"description": "IATA airport, final destination"
},
"carrier": {
"description": "Operating airline: IATA code or name",
"type": [
"string",
"null"
]
},
"event": {
"type": "string",
"enum": [
"cancelled",
"delayed",
"denied_boarding",
"downgraded"
],
"description": "cancelled: by the airline; denied_boarding: refused against their will, e.g. overbooking"
},
"arrival_delay_minutes": {
"description": "At the final destination; if rerouted, on the new flight",
"type": [
"number",
"null"
]
},
"notice_days": {
"description": "cancelled: whole days' notice before departure",
"type": [
"number",
"null"
]
},
"reroute_departure_offset_minutes": {
"description": "cancelled: new minus original departure (negative: earlier)",
"type": [
"number",
"null"
]
},
"cause": {
"description": "Reason the airline gave",
"anyOf": [
{
"type": "string",
"enum": [
"unknown",
"technical",
"operational",
"airline_strike",
"external_strike",
"weather",
"air_traffic_control",
"security",
"bird_strike",
"earlier_flight",
"other_external"
]
},
{
"type": "null"
}
]
},
"distance_km": {
"description": "Only if an airport is not recognised",
"type": [
"number",
"null"
]
}
},
"required": [
"flight_date",
"from",
"to",
"event"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Community
Evidence