Skip to main content
Glama

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/mcp

Claude 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

search_travel_tools

query, category, type, limit (all optional)

Matching listings with tagline, category, author and URL. Typo-tolerant full-text search.

get_tool_details

slug

One listing in full: description, install snippet and setup documentation.

list_categories

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  ──▶  PostgreSQL

The 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:3200

Environment:

Variable

Default

Purpose

MCP_PORT

3200

Local listen port

API_BASE

http://127.0.0.1:3100

Base URL of the travelMCP directory app

SITE_URL

https://omnitravel.ai

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

https://omnitravel.ai/tm-api/v1

Discovery manifest

https://omnitravel.ai/.well-known/mcp.json

For AI crawlers

https://omnitravel.ai/llms.txt, https://omnitravel.ai/llms-full.txt

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.

Maintenance

ActivityMaintained
ResponsivenessSyncing

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables 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.
  • A
    license
    A
    quality
    A
    maintenance
    Search 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.
    5
    18
    5
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Connects 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.
    5
    56
    1
    MIT

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/omnitravelrepo/travelmcp-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server