mcp-travelcode
OfficialClick 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., "@mcp-travelcodefind flights from JFK to LHR on Friday"
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.
What is this?
MCP TravelCode is a Model Context Protocol (MCP) server that connects AI assistants to the TravelCode corporate travel API. It lets AI agents search for flights and hotels, create and manage bookings, check real-time flight status, and access delay statistics — all via natural language conversations.
Built for the MCP ecosystem — works with Claude Desktop, Claude Code, Cursor, Windsurf, Cline, Continue, OpenClaw, and any MCP-compatible client.
Key Features
🔍 Flight search — multi-city, one-way, round-trip with cabin class and passenger filters
🏨 Hotel search — property type, star rating, meal plans, refundability, price filters with streaming results
📊 Flight status — real-time tracking with delays, gates, terminals, and aircraft info
📈 Delay statistics — historical delay and cancellation data for flights and airports
📋 Order management — create, cancel, modify bookings; check cancellation conditions
🔐 OAuth 2.1 + PKCE — secure browser-based authentication, auto-refreshing tokens
🌍 Airport & airline data — search by name, city, IATA/ICAO code
⚡ Async polling — automatic background polling for flight search results
🔄 Dual transport — stdio (local) and Streamable HTTP (remote) support
Related MCP server: Travel Assistant MCP
Quick Start
There are three ways to use MCP TravelCode. Pick one:
What it is | Best for | |
Use our managed instance at | Fastest start; works with Claude Web, Desktop, mobile, IDE clients | |
Run as a child process via | Single user, desktop client, no infra | |
Deploy your own HTTP instance under your domain | Teams, compliance, custom OAuth AS — see DEPLOY.md |
A and C use the Streamable HTTP transport (multi-client, per-user OAuth). B uses stdio (one process per user, token in a local file).
A — Hosted server (zero install)
No install, no local token files. Point any MCP-capable client at:
https://mcp.travel-code.com/mcpOn first use the client opens a browser window, you log in to TravelCode, approve the consent screen, and you're done. Works in Claude for Web, Claude Desktop, Claude Code, Cursor, Windsurf, and any other client that supports HTTP+OAuth MCP servers.
Client | How to add |
Claude Web / Desktop | Settings → Connectors → Add custom connector → URL |
Claude Code |
|
Cursor | Settings → MCP → Add Server → URL |
Windsurf / VS Code / JetBrains / others | Use the client's MCP config and set transport = HTTP (Streamable), URL = |
Once connected, the assistant can search flights, find hotels, view and manage your orders, and pull delay stats — on behalf of the signed-in TravelCode user.
B — Local stdio (npx mcp-travelcode)
For desktop clients without HTTP+OAuth support, or air-gapped/offline setups. Each user runs the server as a child process on their own machine.
# Authenticate once with your TravelCode account (opens browser)
npx mcp-travelcode-auth authThe token is saved to ~/.travelcode/tokens.json and auto-refreshes.
Configure your client to spawn npx mcp-travelcode (examples below).
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"travelcode": {
"command": "npx",
"args": ["mcp-travelcode"]
}
}
}Restart Claude Desktop — done! Ask Claude to search flights, book hotels, or check flight status.
Claude Code
claude mcp add travelcode -- npx mcp-travelcodeChatGPT Desktop
Go to Settings → Tools → Add MCP Server, then add:
{
"command": "npx",
"args": ["mcp-travelcode"]
}Gemini / Google AI Studio
Add to your MCP server configuration:
{
"mcpServers": {
"travelcode": {
"command": "npx",
"args": ["mcp-travelcode"]
}
}
}GitHub Copilot (VS Code)
Add to your VS Code settings.json:
{
"github.copilot.chat.mcpServers": {
"travelcode": {
"command": "npx",
"args": ["mcp-travelcode"]
}
}
}Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"travelcode": {
"command": "npx",
"args": ["mcp-travelcode"]
}
}
}Windsurf / Cline / Continue
Add to your MCP configuration (typically mcp_config.json or settings):
{
"mcpServers": {
"travelcode": {
"command": "npx",
"args": ["mcp-travelcode"]
}
}
}Zed
Add to your Zed settings.json:
{
"context_servers": {
"travelcode": {
"command": {
"path": "npx",
"args": ["mcp-travelcode"]
}
}
}
}JetBrains IDEs (IntelliJ, WebStorm, PyCharm)
Go to Settings → Tools → AI Assistant → MCP Servers → Add, set command to npx with args mcp-travelcode.
OpenClaw
mcp:
servers:
travelcode:
command: npx
args: ["mcp-travelcode"]C — Self-host HTTP server
Deploy your own HTTP instance under your domain. The same flow as the
hosted instance — clients connect by URL, OAuth happens in the browser,
tokens come in the Authorization: Bearer header on every request — but
running on your infra and (optionally) against your own OAuth Authorization
Server.
For a quick local smoke test:
npm run build
PORT=3000 \
RESOURCE_URI=http://localhost:3000 \
OAUTH_ISSUER=https://travel-code.com \
TRAVELCODE_API_BASE_URL=https://api.travel-code.com/v1 \
npm run start:http
# → http://localhost:3000/mcpFor a full production deploy (systemd + nginx + TLS + fail2ban), see
DEPLOY.md. It documents the reference setup we run for
mcp.travel-code.com and lists the placeholders to substitute when
deploying under your own domain.
Requirements for self-hosting against your own AS:
An OAuth 2.1 Authorization Server that exposes RFC 8414 metadata (or you proxy it from the sidecar, as we do for
travel-code.com).Issued scopes match
SCOPES_SUPPORTEDinsrc/http-server.ts(currentlyflights:*,airports:read,airlines:read,hotels:search,tourist:read).Tokens accepted by the upstream TravelCode REST API in the
Authorization: Bearerheader.
Supported Clients
Works with any MCP-compatible client — including all major AI assistants, IDEs, and coding tools:
Client | Transport | Status |
stdio | ✅ Compatible | |
stdio | ✅ Tested | |
stdio | ✅ Tested | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Tested | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Compatible | |
stdio | ✅ Tested | |
stdio | ✅ Tested | |
Any MCP client | stdio / Streamable HTTP | ✅ Compatible |
Tools (50)
✈️ Flight Search & Reference Data
Tool | Description |
| Find airports by name, city, or IATA/ICAO code |
| Get detailed airport information (location, timezone, terminals) |
| Find airlines by name or IATA/ICAO code |
| Search flights — one-way, round-trip, multi-city. Handles async polling automatically |
| Filter, sort, and paginate existing search results |
📊 Flight Statistics
Tool | Description |
| Real-time flight status — delays, gates, terminals, aircraft type |
| Live airport departure/arrival board for a time window |
| Historical on-time performance and delay statistics for a flight number |
| Airport-wide delay and cancellation statistics for a date |
🏨 Hotel Search
Tool | Description |
| Find cities, regions, or specific hotels by name (returns location IDs for search) |
| Get location details by ID |
| Search hotels with filters — property type, star rating, price range, meal plan, refundability. Results stream incrementally |
🚨 Risk Alerts (duty-of-care)
Tool | Description |
| All currently active travel risk alerts worldwide (natural disasters, weather, conflicts, health) |
| Active alerts grouped by ISO-3 country code — heatmap view |
| Single-country advisory snapshot — level, description, risk score, last update |
| Composite numeric risk score with base/alert-impact/composite breakdown |
| Recent armed-conflict events (GDELT proxy) with filters: days, country, min_severity, limit, skip |
| Government travel advisories from US State Dept / UK FCDO / Canada GAC, filterable by country and min_level |
🧳 Travelers (duty-of-care)
Tool | Description |
| List corporate travelers in the active window or by date range, destination country, name/email search |
| Full traveler card — passport, nationality, current trip with hotel/flight services |
| Send safety check-in, evacuation advisory, or custom message to one or more travelers (email/SMS/push) |
📋 Order Management
Tool | Description |
| List all orders with filtering (status, date range) and pagination |
| Get full order details — passengers, segments, pricing, ticket numbers |
| Book a flight from search results — add passengers, contacts, payment |
| Check cancellation conditions, penalties, and refund estimate before canceling |
| Cancel an order with refund processing |
| Check what modifications are allowed (rebooking, baggage, contacts) |
| Modify an order — update contacts, passport info, rebook, add baggage |
Example Conversations
Search Flights
You: Find me flights from New York to London on April 15, economy class, 2 passengers
AI: Uses
search_airports→search_flights→ returns formatted flight options with prices, durations, and stops
Book a Hotel
You: I need a 4-star hotel in Tokyo for May 1-5, 2 adults, with breakfast included
AI: Uses
search_hotel_locations→search_hotelswith star rating and meal plan filters → shows options
Check Flight Status
You: Is my flight AA100 on time today?
AI: Uses
get_flight_status→ shows real-time departure/arrival times, gate, terminal, any delays
Manage Bookings
You: Show my recent orders. Can I cancel order #12345?
AI: Uses
list_orders→check_order_cancellation→ shows cancellation conditions and refund estimate →cancel_orderif confirmed
Flight Delay Analysis
You: How often is BA115 delayed? What are the stats?
AI: Uses
get_flight_delay_stats→ shows historical on-time percentage, average delays, cancellation rate
Authentication
MCP TravelCode uses OAuth 2.1 with PKCE — the modern standard for secure authentication. No API keys to manage or rotate.
# Sign in (opens browser for secure authentication)
npx mcp-travelcode-auth auth
# Check token status and expiration
npx mcp-travelcode-auth status
# Sign out and clear tokens
npx mcp-travelcode-auth logoutTokens are stored in
~/.travelcode/tokens.jsonAccess tokens auto-refresh when expired — no manual intervention needed
Each user authenticates with their own TravelCode account
Legacy mode: Set TRAVELCODE_API_TOKEN environment variable to use a static API token (skips OAuth).
Configuration
Environment Variable | Required | Default | Description |
| No | — | Static API token (bypasses OAuth) |
| No |
| API base URL |
| No |
| Flight search polling interval in milliseconds |
| No |
| Flight search timeout in milliseconds |
Development
git clone https://github.com/Travel-Code-Inc/mcp-travelcode.git
cd mcp-travelcode
npm install
npm run dev # Run with tsx (hot reload)
npm run build # Compile TypeScript
npm test # Run tests
npm run inspect # Test interactively with MCP Inspector
npm run start:http # Start Streamable HTTP transport serverProject Structure
src/
├── index.ts # stdio entry point
├── http-server.ts # Streamable HTTP entry point
├── server.ts # MCP server setup & tool registration
├── config.ts # Environment configuration
├── auth/ # OAuth 2.1 PKCE flow & CLI
├── client/ # TravelCode API client
├── tools/ # 20 MCP tool implementations
├── formatters/ # Response formatting
└── polling/ # Async flight search pollingTech Stack
TypeScript — full type safety
@modelcontextprotocol/sdk — official MCP SDK
Zod — runtime schema validation for all tool inputs
Express 5 — HTTP transport server
Vitest — testing framework
Use Cases
Corporate travel management — search and book business travel through AI assistants
Travel agencies — integrate flight and hotel search into AI-powered agent workflows
Trip planning — find flights, compare prices, check schedules via natural conversation
Flight monitoring — track flight status, delays, gate changes in real-time
Travel analytics — analyze flight delay patterns, airport performance, route statistics
Booking automation — automate repetitive booking tasks through AI agents
Customer support — help travelers check bookings, modify orders, handle cancellations
Related
Model Context Protocol — the open standard for AI tool integration
TravelCode — corporate travel management platform
MCP Servers Directory — official MCP server registry
Claude Desktop — AI assistant with MCP support
Contributing
Contributions welcome! Please open an issue or submit a pull request.
License
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Travel-Code-Inc/mcp-travelcode'
If you have feedback or need assistance with the MCP directory API, please join our Discord server