visa_free_destinations

Pack: visa-requirements · Endpoint: https://gateway.pipeworx.io/visa-requirements/mcp

Where can holders of a given passport travel without a visa? Lists every destination grouped by requirement: visa-free (with allowed stay days), visa on arrival, e-visa, eTA — plus counts for visa-required and no-admission. Optional filter to a single category. Answers “visa-free countries for X passport holders”. Data: Passport Index snapshot (2026-02-18). Example: visa_free_destinations({ passport: “Germany” })

Parameters

NameTypeRequiredDescription
passportstringyesPassport / nationality — ISO2, ISO3, or country name
requirementstringnoOptional: return only destinations in this category (default: full lists for visa_free, visa_on_arrival, e_visa, eta, plus counts for the rest)

Example call

Arguments

{
  "passport": "Germany"
}

curl

curl -X POST https://gateway.pipeworx.io/visa-requirements/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"visa_free_destinations","arguments":{"passport":"Germany"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('visa_free_destinations', {
  "passport": "Germany"
});

More examples

{
  "passport": "India",
  "requirement": "visa_free"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "visa-requirements": {
      "url": "https://gateway.pipeworx.io/visa-requirements/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026