travelmcp-directory
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., "@travelmcp-directoryfind MCP servers for hotel booking"
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.
travelMCP Directory MCP Server
A hosted MCP server that lets any AI assistant search the OmniTravel travelMCP directory: MCP servers, agent skills and APIs built for the travel industry.
Published in the official MCP Registry as ai.omnitravel/travelmcp-directory.
Endpoint: https://omnitravel.ai/mcp (Streamable HTTP, no authentication)
Connect
Claude Code:
claude mcp add --transport http travelmcp https://omnitravel.ai/mcpClaude Desktop, Cursor or any MCP client:
{
"mcpServers": {
"travelmcp": {
"type": "http",
"url": "https://omnitravel.ai/mcp"
}
}
}Then ask your assistant things like "which MCP servers handle hotel ID mapping?" or "show me the setup docs for the room matching API".
Related MCP server: evc-spark-mcp
Tools
Tool | Arguments | Returns |
|
| Matching listings with tagline, category, author and URL. Typo-tolerant full-text search. |
|
| One listing in full: description, install snippet and setup documentation. |
| none | Every category with its slug and listing count. |
All tools are read-only.
Architecture
MCP client ──Streamable HTTP──▶ this server ──HTTP──▶ travelMCP JSON API ──▶ PostgreSQLThe server holds no database connection. It calls the directory's public JSON API
(https://omnitravel.ai/tm-api/v1), which keeps this process decoupled from the
directory's schema: the catalogue can change shape without breaking the MCP layer.
Requests are handled in stateless mode, one server and transport instance per request, which is the simplest correct pattern behind a plain reverse proxy.
Run your own
npm install --omit=dev
cp .env.example .env # set API_BASE if the directory API is elsewhere
node server.js # listens on 127.0.0.1:3200Environment:
Variable | Default | Purpose |
|
| Local listen port |
|
| Base URL of the travelMCP directory app |
|
| Public site URL, used in health output |
Behind nginx:
location ^~ /mcp {
proxy_pass http://127.0.0.1:3200;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
proxy_read_timeout 300s;
}Other ways to reach the same data
Access | URL |
REST API |
|
Discovery manifest |
|
For AI crawlers |
|
About
Built by OmniTravel, a Paris-based travel technology company working on agentic distribution, hotel ID mapping and real-time room type mapping.
MIT licensed.
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 Connectors
Search MCP servers, agent skills and APIs for travel: hotel ID mapping, rates, rooms.
Search engine for AI agents to find MCP servers, A2A agents, and skills on their own.
Search AI capabilities across AWS Marketplace and the Official MCP Registry.
Search the HeyClaude directory of Claude Code agents, MCP servers, skills, and tools.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables users to search and discover over 500 AI agent endpoints and x402 APIs directly from MCP-compatible clients like Claude and Cursor. It provides tools to query endpoints by keyword, category, or capability while offering access to detailed provider statistics.
- AlicenseAqualityAmaintenanceSearch and discover AI agents, skills, prompts, bundles and MCP connectors from a curated catalog of 4500+ assets. Provides tools for searching, browsing categories, and accessing detailed information about each asset.5185MIT
- AlicenseAqualityDmaintenanceConnects AI coding agents to the SkillFlow marketplace to search, discover, and retrieve detailed information about agent skills. It enables users to browse trending skills, categories, and publisher data directly through MCP-compatible environments.5561MIT
- AlicenseAqualityDmaintenanceEnables searching and retrieving details of 9,000+ MCP servers from the Agent Almanac catalog, allowing agents to discover, inspect, and install tools directly.346MIT
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/omnitravelrepo/travelmcp-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server