Visa Requirements
live TravelGeographyVisa requirements for any passport and destination — visa-free stay lengths, visa-on-arrival, e-visa and eTA rules across 199 nationalities, visa-free destination lists, and passport power comparison.
Tools
visa_requirement Do I need a visa? Visa requirement for one passport (nationality) traveling to one destination country — returns visa-free (with allowed stay days when known), visa on arrival, e-visa, eTA, visa requi
No parameters required.
Try it
visa_free_destinations 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-req
No parameters required.
Try it
visa_passport_compare Compare passport power: for 2-5 passports, how many destinations each can enter visa-free / on arrival / with e-visa or eTA / visa required (passport-ranking mobility comparison). With exactly 2 passp
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/visa-requirements/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/visa-requirements/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"visa_requirement","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("visa_requirement", {}); // Or ask in plain English:
const answer = await px.ask("visa requirements for any passport and destination — visa-free stay lengths, visa-on-arrival, e-visa and eta rules across 199 nationalities, visa-free destination lists, and passport power comparison");