travelmcp-directory
Click on "Deploy 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 deployed
Maintenance
Related MCP Connectors
Search MCP servers, MCP clients and AI agents, and retrieve listing details. Free, read-only access.
Search engine for AI agents to find MCP servers, A2A agents, and skills on their own.
Search and fetch AI agents, skills, prompts and MCP connectors from the Spark marketplace.
615Search AI capabilities across AWS Marketplace and the Official MCP Registry.
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.577 npm5MIT
- 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.541 npm1MIT
- AlicenseAqualityDmaintenanceEnables searching and retrieving details of 9,000+ MCP servers from the Agent Almanac catalog, allowing agents to discover, inspect, and install tools directly.347 npmMIT