visa_requirement

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

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 required, or no admission. Covers 199×199 country pairs. Data: community-maintained Passport Index snapshot (last updated 2026-02-18) — verify with official sources before travel. Example: visa_requirement({ passport: “United States”, destination: “Brazil” })

Parameters

NameTypeRequiredDescription
passportstringyesPassport / nationality — ISO2, ISO3, or country name, e.g. “US”, “DEU”, “South Korea”, “UK”
destinationstringyesDestination country — ISO2, ISO3, or country name, e.g. “BR”, “Japan”, “Türkiye”

Example call

Arguments

{
  "passport": "US",
  "destination": "Brazil"
}

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_requirement","arguments":{"passport":"US","destination":"Brazil"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('visa_requirement', {
  "passport": "US",
  "destination": "Brazil"
});

More examples

{
  "passport": "Germany",
  "destination": "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.

Regenerated from source · build September 1, 2026