a2a-travel-mcp-servers
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@a2a-travel-mcp-serversFind flights from JFK to LHR for next Tuesday."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
A2A Travel MCP Servers (Remote)
Two standalone Model Context Protocol servers, each exposing one real-data tool over Streamable HTTP — deployable as independent remote services and reachable by any MCP client over a plain URL, instead of being spawned as a local subprocess.
Tools
Server | Tool | Data Source | API Key Required |
|
| Yes — | |
|
| Booking.com (via RapidAPI) | Yes — |
Related MCP server: flights-mcp
Why Streamable HTTP
Both servers use the same tool logic you'd find in a local (stdio) MCP server — the only difference is the transport. Instead of an agent spawning these as a local subprocess, each one runs as a persistent web service with its own URL, so any MCP client (local or remote) can connect to it directly.
Running Locally
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
FLIGHTAPI_KEY=... python flight_price_server.py # listens on http://localhost:8000/mcp
RAPIDAPI_KEY=... python hotel_price_server.py # listens on http://localhost:8000/mcpRun one at a time locally (both default to port 8000), or set PORT to run them side by side:
PORT=8001 RAPIDAPI_KEY=... python hotel_price_server.pyDeploying to Render
Each server is deployed as its own Web Service, both pointing at this same repository:
Push this repo to GitHub.
On Render, click New + → Web Service, connect this repo.
For the flight service:
Build Command:
pip install -r requirements.txtStart Command:
python flight_price_server.pyAdd environment variable
FLIGHTAPI_KEYwith your key from api.flightapi.io/register.
For the hotel service, repeat as a separate Web Service:
Build Command:
pip install -r requirements.txtStart Command:
python hotel_price_server.pyAdd environment variable
RAPIDAPI_KEYwith your key from rapidapi.com (subscribed to the free tier of Booking COM).
Render assigns a public HTTPS URL to each service and injects PORT automatically — both servers already read it (os.environ.get("PORT", 8000)).
Connecting an Agent
Once deployed, point any MCP client at the service's /mcp endpoint. With the OpenAI Agents SDK:
from agents.mcp import MCPServerStreamableHttp
flight_mcp = MCPServerStreamableHttp(
name="flight-price-server",
params={"url": "https://<your-flight-service>.onrender.com/mcp"},
)No local process is spawned — the agent talks to the tool entirely over HTTP.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP server that enables Google Flights search via SerpApi, supporting one-way, round-trip, and multi-city itineraries with defaults for Business class, Star Alliance, and EUR pricing. It provides flight search, booking options, and usage tracking.126MIT
- FlicenseAqualityDmaintenanceAn MCP server for holiday flight planning powered by Google Flights via SerpAPI, enabling real-time flight search, destination discovery, airport comparison, and multi-country trip planning.13
- Flicense-qualityDmaintenanceMCP server providing flight search, web search, URL fetching with JS rendering, and documentation search tools.
- AlicenseAqualityDmaintenanceMCP server that searches hotels on Booking.com with 80+ filter options using Playwright browser automation.7341MIT
Related MCP Connectors
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
Geo-based flight search MCP server. Find more flights between any two places on earth
AI marketplace — flights, tours, activities, transport & more via MCP. No auth required.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zalaid/a2a-travel-mcp-servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server