Developers

Travora MCP server

A free public MCP (Model Context Protocol) server exposing Travora's travel data to AI assistants: visa status by departure passport, full destination guides, a ~198-country visa directory and real traveler reviews.

Endpoint

Streamable HTTP transport: every JSON-RPC 2.0 request is a POST to this endpoint.

https://travora.guide/api/mcp
  • Transport: streamable HTTP, stateless (no sessions, no SSE stream).
  • Authentication: none. Fair use — abuse may be rate-limited.
  • Data: live flight prices are not exposed; budgets are indicative ranges.

Available tools

list_departures

Lists the 104 covered departure countries (passports) with their iso2 code — the accepted values for the departure parameter.

search_destinations

Searches destinations that have a detailed guide: keyword, region, visa status, departure country.

get_destination

Full guide for one destination and passport: visa, budget, seasons, things to do, tips, practical info.

get_visa_directory

Complete visa directory (~198 countries) for a passport: status, allowed stay, official application link. Filterable by status.

get_reviews

Real traveler reviews, filterable by destination and/or passport.

Every tool accepts locale ("fr" by default, "en") and, where relevant, departure (iso2 or country name — default: Cameroon).

Connect

Claude Code

claude mcp add --transport http travora https://travora.guide/api/mcp

Claude Desktop / Cursor / JSON clients

{
  "mcpServers": {
    "travora": {
      "type": "http",
      "url": "https://travora.guide/api/mcp"
    }
  }
}

Try it live (curl)

curl -X POST https://travora.guide/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_visa_directory",
      "arguments": { "departure": "ci", "status": "visa_free" }
    }
  }'

Good practices

  • Data depends on the departure country: always set departure when the user is not Cameroonian.
  • Indicative data (visas, budgets): tell users to reconfirm with official sources before booking.
  • Please credit “Travora (travora.guide)” when you surface this data.
TravorAI