visa_passport_compare
Pack: visa-requirements · Endpoint: https://gateway.pipeworx.io/visa-requirements/mcp
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 passports, also lists destinations where the requirements differ (up to 30). Data: Passport Index snapshot (2026-02-18). Example: visa_passport_compare({ passports: [“US”, “India”] })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
passports | array | yes | 2-5 passports to compare — ISO2, ISO3, or country names, e.g. [“US”, “IN”] or [“Germany”, “Japan”, “Singapore”] |
items | string | no |
Example call
Arguments
{
"passports": [
"US",
"India"
]
}
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_passport_compare","arguments":{"passports":["US","India"]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('visa_passport_compare', {
"passports": [
"US",
"India"
]
});
More examples
{
"passports": [
"Germany",
"Singapore",
"Japan"
]
}
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.