waysway for LangChain
io.github.waysway-app/waysway
Waysway AI travel MCP for hotels, live prices, restaurants, flights, and activities.
client:LangChain
transport:streamable-http
tools:20
Install waysway in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"waysway": {
"transport": "streamable_http",
"url": "https://api.waysway.com/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs
What LangChain can do once it is connected
- get_user_profile_schema
- start_session
- get_session_state
- clear_session
- list_sessions
- update_user_profile
- update_user_profile_from_model
- extract_user_profile_from_text
- ingest_user_message
- normalize_stay_dates
- update_stay_dates
- search_hotels
- get_hotel_details
- check_stay_price
- get_booking_offers
- search_restaurants_near_hotel
- search_activities_in_city
- search_flight_content
- search_homestays_in_city
- health_check