orizn-visa-mcp
The Orizn Visa MCP server provides comprehensive visa requirement data covering 39,585 passport-destination pairs across 15 languages (including English, French, Spanish, German, and Chinese), with up to 32 data points per visa.
Check Visa Requirements (
check_visa_requirement) — Get full visa details for any passport-destination pair: visa type, allowed stay, required documents, application process, fees, processing times, photo specs, vaccinations, insurance, overstay penalties, embassy contacts, safety advisories, digital nomad/remote work options, and more. Requires an API key.Quick Visa Check (
quick_visa_check) — Rapidly get visa status (visa-free, e-visa, visa required, on arrival, ETA, or no admission) without full details. Works with a free API key.Get All Destinations (
get_all_destinations) — Retrieve visa requirements for all 199 destinations at once for a given passport, ideal for travel planning or visa maps. Requires a Pro plan API key.Track Visa Policy Changes (
get_visa_changes) — Get the latest global visa policy updates, new exemptions, and requirement modifications, optionally filtered by passport or destination country. Requires a Starter plan API key.Check Transit Visa Rules (
check_transit_visa) — Look up transit visa requirements and free transit hours for top layover hubs (e.g., Dubai, Istanbul, Singapore). Requires an API key.Get Coverage Stats (
get_coverage_stats) — Retrieve database statistics (total pairs, countries, languages). Free — no API key required.
API keys can be provided via environment variables or CLI arguments, with a free tier available for basic functionality.
Integrates with OpenAI Codex Desktop to provide visa requirement checks, supporting full visa details, quick checks, and coverage statistics.
Orizn Visa API MCP Server
Orizn Visa API MCP Server is a Model Context Protocol (MCP) server that gives an AI assistant the visa and entry requirements for any passport/destination pair, answered in 15 languages.
Coverage grows: rather than print a number here that goes stale, the get_coverage_stats tool reads it live from the API (also public at https://visa.orizn.app/api/v1/visa/stats).
It answers questions like "do I need a visa to go from France to Japan", "what documents does a US citizen need for China", "can I leave the airport during a layover in Istanbul on an Indian passport" — with data, not a guess.
Compatibility
The server speaks MCP over stdio and runs on Node.js 18 or later. It works with any MCP client that can launch a stdio server, including Claude Desktop, Claude Code and Cursor. The configuration block below is the same for all of them.
Related MCP server: @transita/mcp-server
Install
npx orizn-visa-mcpNothing to build, nothing to clone. Add it to your MCP client config:
{
"mcpServers": {
"orizn-visa": {
"command": "npx",
"args": ["-y", "orizn-visa-mcp"]
}
}
}Restart the client, then ask: "Do I need a visa to go from France to Japan?" — that works with no API key, 10 checks a day.
For everything else (documents, fees, processing times, transit rules, 15 languages), add a free key:
{
"mcpServers": {
"orizn-visa": {
"command": "npx",
"args": ["-y", "orizn-visa-mcp"],
"env": {
"ORIZN_API_KEY": "orizn_visa_..."
}
}
}
}The key can also be passed as an argument, which takes precedence over the environment variable:
npx orizn-visa-mcp --api-key orizn_visa_...Example questions
"Do I need a visa to travel from France to Thailand?"
"What documents do I need as a US citizen visiting China?"
"Compare Thailand, Vietnam and Indonesia for a Brazilian passport."
"Can I leave the airport during a 12h layover in Istanbul on a Chinese passport?"
"How much does a Schengen visa cost for a Filipino passport holder?"
"Which vaccinations do I need to enter Brazil with a French passport?"
"What's the fine if I overstay my Thai visa by 3 days?"
"Does Portugal have a digital nomad visa, and what does it cost?"
"Réponds en français : ai-je besoin d'un visa pour le Japon avec un passeport marocain ?"
Tools
Tool | Arguments | What it returns | Plan |
|
| Full entry requirements for one passport into one destination: requirement type, days allowed, documents, application steps, fees, processing times, passport validity, photo specs, vaccinations, insurance, safety advisory, overstay penalties, entry by air/land/sea, remote-work visa, extension and minor rules, embassies. | Any key |
|
| One line: the requirement code, the number of visa-free days, and the date the pair was last verified. No documents, no fees, no translation. | None — 10/day keyless, unlimited with any key |
|
| Up to 25 destinations for one passport side by side: requirement, visa-free days, description, passport validity, fee, safety, health, vaccinations, insurance, entry by mode, remote-work visa. Each destination returned counts as one request. | Hobby or above |
|
| Layover rules only: whether the traveller may stay airside or leave the airport while connecting, and how many free transit hours the main hubs grant. | Hobby or above |
| none | Size of the database: pairs, passports, destinations, translations, languages, and the distribution of requirement types. Says nothing about a specific pair. | None |
|
| Visa rules that changed recently, with the source that reported them and the date. The feed is currently off — see below. | None |
Country codes are ISO 3166-1 alpha-3 (FRA, JPN, USA), not alpha-2.
requirement is one of visa_free, visa_required, e_visa, visa_on_arrival, eta, no_admission, plus the rarer partial_restrictions, admission_refused, not_applicable and special.
Resource
visa://supported-languages — the 15 codes accepted by lang, available on every plan including free: en fr es pt de ja ko zh ru it ar hi th vi tl.
get_recent_changes returns nothing on purpose
Orizn's policy-change feed is switched off. It was serving inconsistencies detected between two internal Orizn tables as if they were official policy changes, so it now returns HTTP 503 and this tool degrades to:
{ "status": "unavailable", "changes": [], "do_not_conclude": "This is NOT evidence that no visa rules changed..." }The tool is shipped in this state deliberately: an empty, clearly-labelled answer is the honest one, and the tool starts returning real entries the day the feed runs on verified official sources — at which point entries without a named source and a date are withheld rather than shown.
Authentication and free tier
quick_visa_check, get_coverage_stats and get_recent_changes work with no API key at all. Keyless quick_visa_check is capped at 10 checks per day — the same allowance visa.orizn.app gives an anonymous visitor. Past that the tool says so and points at the free key rather than failing silently. The cap is per running server process and resets at 00:00 UTC.
The other three tools need an API key, sent as the x-api-key header to https://visa.orizn.app/api/v1/visa.
Get a free one at visa.orizn.app/visa-api — no credit card. The free tier is 50 requests/month (5 until you confirm your email address) and includes the core fields and all 15 languages. On the free plan the deeper fields — fees, processing days, photo specs, vaccinations, insurance, transit visas, entry by mode, overstay penalties, remote-work visas, embassies — come back as an {"upgrade": "..."} placeholder, and compare_destinations and check_transit_visa are gated.
Hobby is $9/month for 10,000 requests and unlocks all of it: upgrade. Higher-volume plans are listed on the pricing page.
Pass the key in the env block of the MCP config — MCP clients do not inherit your shell environment, so exporting ORIZN_API_KEY in a terminal is not enough.
Check a key without any MCP client:
curl -H "x-api-key: $ORIZN_API_KEY" \
"https://visa.orizn.app/api/v1/visa/check?passport=FRA&destination=JPN"{ "passport": "FRA", "destination": "JPN", "requirement": "visa_free", "visa_free_days": 90 }Troubleshooting
Symptom | Fix |
"No Orizn API key" | Expected on the key-only tools. |
"Keyless daily limit reached" | The 10 free checks for today are spent. A free key removes the cap |
HTTP 403, "check ORIZN_API_KEY for typos" | Key is wrong, revoked, or has whitespace |
HTTP 403, "requires Hobby plan or above" | Right key, wrong plan — this tool is paid |
HTTP 429 | Monthly quota spent |
HTTP 404 on a real country | Use alpha-3 codes ( |
Nothing works at all | Call |
| Expected — the feed is being rebuilt. It does not mean the rules are unchanged |
Links
Website — visa.orizn.app
API documentation — visa.orizn.app/visa-api/dashboard/docs
Get a free key — visa.orizn.app/visa-api
GitHub — github.com/MattJeff/orizn-mcp-server
Support — api@orizn.app
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityCmaintenanceProvides tools to fetch up-to-date visa and immigration information for various countries, helping users plan their international travel with accurate data.2
- AlicenseAqualityBmaintenanceProvides immigration eligibility intelligence, enabling AI assistants to match user profiles to visas, compare pathways, and get country overviews using Transita's API.570MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying passport visa rules for any nationality to destination pair.16MIT

Departi MCP Serverofficial
AlicenseAqualityBmaintenanceTravel compliance and trip planning for digital nomads — visa requirements, tax residency analysis, Schengen 90/180-day tracking, and curated accommodation, transport, and experience search across 189 European destinations.7MIT
Related MCP Connectors
Passport visa, entry & transit requirements for any country pair, with official government sources.
Visa Requirements MCP — passport visa rules for any nationality → destination pair
Visa eligibility matcher and immigration intelligence for MCP-compatible AI assistants.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MattJeff/orizn-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server