Ferryhopper MCP Server
공식Ferryhopper MCP 서버는 페리 노선, 일정 및 예약 리디렉션을 제공하여 AI 어시스턴트가 유럽과 지중해 전역의 연결편을 검색하고 사용자를 Ferryhopper로 보내 예약을 완료할 수 있도록 합니다.
문서
Overview
The Ferryhopper MCP Server exposes ferry routes, schedules and booking redirects so an AI assistant can discover connections across Europe and the Mediterranean and send users to Ferryhopper to complete their booking.
An MCP app (see the official overview) is any client that can consume remote MCP tools and, in some hosts, render UI resources alongside tool results.
Key features
- 🌍Search ports and connections across 33 countries and 190+ ferry operators
- ⛴️Get real-time ferry itineraries with indicative prices
- ⚠️Get live disruption alerts across Greece and Europe, including cancellations, vessel changes, port modifications, and weather warnings
- 🔗Receive a direct link to Ferryhopper.com to continue the booking flow from the selected trip
Use cases
- Assist users searching for ferry routes and daily itineraries
- Recommend destinations based on departure port and date
- Power travel chatbots to plan island-hopping or multi-leg journeys
- Inform users of active disruptions before or during travel, so they can adjust plans in real time
Client integration options
- 📱MCP-ready hosts consume our toolset and, if they support iframe-style MCP apps, render richer interactive travel results.
- 🧩Text-only or command-line clients use the same tools endpoint, simply ignoring the UI resource and working with the structured JSON responses for ports, routes, and trip data.
UI resources
Beyond the tools, we expose a resource named search-trips-carousel at ui://widgets/trips-carousel.html. Hosts fetch it to embed our Trips Carousel UI alongside the tool response.
Available Tools
Get ports
{
"name": "get_ports",
"description": "Get a list of global ports and their details"
}
Search trips
This is the engine behind our Trips Carousel UI: hosts that support MCP app surfaces can render the provided cards, while purely conversational hosts consume the same structured trip data.
{
"name": "search_trips",
"description": "Return carousel-ready UI blocks plus identical structured data for hosts without MCP app rendering",
"parameters": {
"departureLocation": "string",
"arrivalLocation": "string",
"date": "string (YYYY-MM-DD)"
}
}
Get disruptions
{
"name": "get_disruptions",
"description": "Get a list of disruptions for a given date and country, including trip cancellations, vessel changes, schedule modifications, weather warnings, and port changes",
"parameters": {
"country": "string (ISO 3166-1 alpha-2, e.g. \"GR\")",
"tripDate": "string (YYYY-MM-DD)"
}
}
Get Direct Connections
{
"name": "",
"description": "Get a list of all the direct connections between ports",
"parameters": {
"portLocation": "string"
}
}
Installation & Setup
The MCP clients directory lists the current set of supported apps and agents that can connect to MCP servers, so teams with MCP-enabled clients can integrate Ferryhopper with minimal setup. Application Examples:
- Gemini CLI
- ChatGPT
- Claude.ai / Claude Desktop Consult their documentation and use the following URL for connecting:
https://mcp.ferryhopper.com/mcp
Example Prompts
“What ferries depart from Piraeus to Aegina on Saturday morning?”
“Help me find a ferry from Ibiza to Barcelona on July 11th.”
“I want to visit an island within 3 hours of Athens tomorrow and return the next day, what are my options?”
“Are there any ferry disruptions or cancellations in Greece today?”