Digital Nomad Visa MCP Server

A Model Context Protocol server exposing digital nomad visa data for AI assistants.

This server lets AI assistants (Claude, ChatGPT, and other MCP-compatible clients) search and query digital nomad visa requirements — by country, income requirement, or minimum stay length — sourced from digitalnomadvisa.com.

Connect

Add this server's MCP endpoint to your client:

https://mcp.digitalnomadvisa.com/mcp

Uses the standard MCP Streamable HTTP transport. No authentication required — all tools are read-only.

Available tools

ToolDescription
SearchByCountry
country: string
Partial-match visa search by country name.
GetVisaBySlug
countrySlug: string
Full visa detail, including FAQs, by country slug.
ListAllCountries
(no parameters)
Every country currently offering a digital nomad visa.
SearchByMonthlyIncome
maxMonthlyIncome: number
Visas with a monthly income requirement at or below the given amount (USD).
SearchByAnnualIncome
maxAnnualIncome: number
Visas with an annual income requirement at or below the given amount (USD).
SearchByMinLength
minMonths: number
Visas that allow a stay of at least the given number of months.

Source

Open source and public: github.com/nomadstays/digitalnomadvisa-mcp. Built with the official ModelContextProtocol C# SDK on ASP.NET Core.