a2a-travel-mcp-servers
Provides two MCP servers: one for searching real-time flight prices via FlightAPI.io and another for hotel prices via Booking.com through RapidAPI, both accessible over Streamable HTTP.
README
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 |
|---|---|---|---|
flight_price_server.py |
search_flights(dep_iata, arr_iata, date, cabin) — real live flight fares for a specific date |
FlightAPI.io | Yes — FLIGHTAPI_KEY |
hotel_price_server.py |
search_hotels(city, arrival_date, departure_date, adults) — real live hotel prices for specific dates |
Booking.com (via RapidAPI) | Yes — RAPIDAPI_KEY |
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/mcp
Run 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.py
Deploying 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.txt - Start Command:
python flight_price_server.py - Add environment variable
FLIGHTAPI_KEYwith your key from api.flightapi.io/register.
- Build Command:
- For the hotel service, repeat as a separate Web Service:
- Build Command:
pip install -r requirements.txt - Start Command:
python hotel_price_server.py - Add environment variable
RAPIDAPI_KEYwith your key from rapidapi.com (subscribed to the free tier of Booking COM).
- Build Command:
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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.