CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Orizn Visa Mcp

mattjeff/orizn-mcp-server
authSTDIOregistry active
Summary

Connects Claude to Orizn's visa requirement database covering 39,585 passport-destination pairs across 199 countries in 15 languages. Exposes six tools: check_visa_requirement returns full details including fees, processing times, photo specs, transit rules, overstay penalties, and embassy locations with up to 32 data points per query. quick_visa_check gives fast yes/no answers on visa type (free, required, on arrival, e-visa). check_transit_visa handles layover rules for 50 major hubs like DXB and IST. get_all_destinations and get_visa_changes require paid tiers. Free tier works without an API key for basic checks. Reach for this when building travel planning tools, itinerary agents, or anything that needs current visa policy data beyond simple yes/no answers.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Orizn Visa MCP Server

npm version License: MIT MCP Compatible

Give any AI agent instant access to visa requirements for 39,585 passport-destination pairs in 15 languages, with 32 data points per visa — fees, processing times, photo specs, transit visas, embassies, overstay penalties, safety advisories, and more.


Tools

ToolAuthDescription
check_visa_requirementAPI keyFull visa details — documents, process, tips, transit, fees, processing days, photo specs, vaccinations, insurance, overstay penalties, embassies, safety, health, remote work, extensions, and more
quick_visa_checkAPI keyFast yes/no visa check (visa-free / e-visa / required / on arrival / ETA / no admission)
get_all_destinationsKey (Pro)All 199 destinations for any passport
get_visa_changesKey (Starter)Track recent visa policy changes
check_transit_visaAPI keyTransit visa rules + free transit hours for top 50 layover hubs (DXB, IST, DOH, SIN, ...)
get_coverage_statsFreeDatabase coverage statistics

Each tool description tells the agent exactly when to call it (transit, overstay, photos, vaccinations, etc.), so models pick the right one without prompting tricks.

What check_visa_requirement returns

Every full visa response includes up to 32 fields:

  • Core: requirement, visa_free_days, description, documents_required, process, tips, country_info, verified
  • Cost & timing: visa_fee (single / multiple entry), processing_days (standard / express / rush), best_apply_period
  • Entry: passport_validity_months, entry_by_mode (air / land / sea), transit_visa (per-hub rules)
  • Documents: photo_specs (mm dimensions, background, glasses rules)
  • Health & safety: vaccinations_required, health_requirements, insurance_required, safety (advisory level 1–4)
  • Penalties & warnings: overstay_penalty (fine, ban, criminal), dual_nationality_warnings, stamp_warnings
  • Long-stay: remote_work_visa (digital nomad), extension_rules, minor_rules
  • Embassies: embassy.your_embassy_at_destination (emergencies) + embassy.visa_application_embassy (where to apply)
  • History: reciprocity_history (past policy changes between the two countries)

Anything not relevant to a given pair is omitted (e.g. remote_work_visa only appears when a digital nomad visa exists).


Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "orizn-visa": {
      "command": "npx",
      "args": ["-y", "orizn-visa-mcp"],
      "env": {
        "ORIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "orizn-visa": {
      "command": "npx",
      "args": ["-y", "orizn-visa-mcp"],
      "env": {
        "ORIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Codex Desktop

OpenAI Codex Desktop supports MCP natively. Add to your Codex MCP config:

{
  "mcpServers": {
    "orizn-visa": {
      "command": "npx",
      "args": ["-y", "orizn-visa-mcp"],
      "env": {
        "ORIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Composio

Composio connects AI agents to 500+ tools via MCP. Use Orizn Visa through Composio's MCP support:

{
  "mcpServers": {
    "orizn-visa": {
      "command": "npx",
      "args": ["-y", "orizn-visa-mcp"],
      "env": {
        "ORIZN_API_KEY": "your-api-key"
      }
    }
  }
}

Any MCP Client

npx orizn-visa-mcp

Or with an API key:

npx orizn-visa-mcp --api-key YOUR_KEY

Configuration

OptionDescription
ORIZN_API_KEY env varSet your API key via environment variable
--api-key CLI argPass your API key as a command-line argument

Free tier works without a key — you get access to quick_visa_check and get_coverage_stats.

Get your API key at visa.orizn.app


Examples

Just ask your AI agent in natural language:

Basic checks

  • "Do I need a visa to travel from France to Thailand?"
  • "Show me all visa-free countries for a Brazilian passport."
  • "What documents do I need as a US citizen visiting China?"

Layovers & transit

  • "Do I need a transit visa if I'm Indian and connecting through Dubai?"
  • "Can I leave the airport during a 12h layover in Istanbul on a Chinese passport?"

Cost & timing

  • "How much does a Schengen visa cost for a Filipino passport holder?"
  • "What's the processing time for a US tourist visa right now?"

Health & insurance

  • "Which vaccinations do I need to enter Brazil with a French passport?"
  • "What's the minimum travel insurance coverage required for Schengen?"

Documents & photos

  • "What are the photo specs for a Chinese visa application?"
  • "How long does my passport need to be valid to enter Vietnam?"

Penalties & rules

  • "What's the fine if I overstay my Thai visa by 3 days?"
  • "Are there entry restrictions if my passport has an Israeli stamp?"

Long-stay & remote work

  • "Does Portugal have a digital nomad visa, and what does it cost?"
  • "Can I extend my Thai tourist visa inside Thailand?"

Recent changes

  • "Have any visa policies changed recently for Indian passport holders?"

Supported Languages

CodeLanguage
enEnglish
frFrench
esSpanish
deGerman
itItalian
ptPortuguese
ruRussian
zhChinese
jaJapanese
koKorean
arArabic
hiHindi
thThai
viVietnamese
tlFilipino

Visa Types

TypeDescription
visa_freeNo visa required
visa_requiredVisa must be obtained before travel
e_visaElectronic visa available online
visa_on_arrivalVisa issued at the port of entry
etaElectronic Travel Authorization
no_admissionEntry not permitted

Pricing

PlanPriceRequests/month
Free$0Limited
Starter$49/mo—
Pro$199/mo—
Business$699/mo—
EnterpriseCustomUnlimited

See full plan details at visa.orizn.app


Links

  • API Documentation — visa.orizn.app/visa-api/dashboard/docs
  • GitHub — github.com/MattJeff/orizn-mcp-server
  • Support — api@orizn.app

Feedback

Building a travel agent or visa tool? We'd love to hear what you're building.

→ api@orizn.app — Feature requests, partnerships, and questions welcome.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

ORIZN_API_KEYsecret

API key for premium features (optional -- free tier works without key)

Registryactive
Packageorizn-visa-mcp
TransportSTDIO
AuthRequired
UpdatedMay 24, 2026
View on GitHub