@transita/mcp-server
This server provides immigration eligibility intelligence, helping users discover suitable countries and visa pathways for relocation based on their profile.
Match visas to a profile: Score a user's profile (citizenship, age, education, work experience, income, goal, timeline) against all supported visa pathways and receive top matches ranked by eligibility, with cost, timeline, and links to official sources.
Get full visa details: Retrieve comprehensive information for a specific visa — eligibility requirements, processing time, fees, validity period, PR timeline, and a document checklist preview.
Compare visa pathways: Side-by-side comparison of 2–3 visa options, highlighting the fastest, cheapest, and best PR path with delta summaries.
Country overviews: Get a destination country summary including available visa pathways, EU membership status, score dimensions, drawbacks, top cities with rent ranges, and PR/citizenship timelines.
Search by nationality: Find curated top destinations and best-fit visas for citizens of a given country — ideal for answering "Where should I move?"
Live programme status: Check whether round-based immigration programmes are currently open, including last round date and cutoff score.
Browse resources: Access the full active visa catalogue (
transita://visas), destination country list (transita://countries), and nationality-specific pages (transita://nationalities,transita://nationality/<slug>).Guided prompts: Use built-in prompts (
find-my-visa,compare-options,where-should-i-move) to walk through eligibility quizzes and comparisons interactively.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@transita/mcp-serverI'm an Indian software engineer, where should I move?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@transita/mcp-server
Immigration eligibility intelligence for Claude Desktop, Cursor, Cline, Continue, Zed, and any MCP-compatible AI assistant.
Transita figures out which country you should move to — and runs the whole relocation. This MCP server exposes the same matcher, country comparisons, visa checklists, and nationality guides that power transita.app, so you can ask any AI assistant "where should I move?" and get a real, sourced answer.
The server is a stateless shim. It calls the public Transita JSON API, so visa data updates the moment transita.app redeploys. No data lives in this package.
Install
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"transita": {
"command": "npx",
"args": ["-y", "@transita/mcp-server"]
}
}
}Restart Claude Desktop. The Transita tools should appear in the input box.
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"transita": {
"command": "npx",
"args": ["-y", "@transita/mcp-server"]
}
}
}Cline (VS Code extension)
Open the Cline MCP settings panel and add:
{
"transita": {
"command": "npx",
"args": ["-y", "@transita/mcp-server"]
}
}Continue, Zed, any other MCP client
Use the same pattern — command: npx, args: ["-y", "@transita/mcp-server"].
Related MCP server: mcp-travelcode
What it exposes
Tools (5)
Tool | What it does |
| Score a profile (citizenship, education, work years, income, goal, timeline) against every visa Transita supports. Returns top matches ranked by eligibility. |
| Full details for a single visa: eligibility, processing time, fees, validity, PR path, and a free preview of the document checklist. |
| Side-by-side comparison of 2-3 visa pathways with deltas (fastest processing, lowest cost, longest validity, PR path). |
| Country-level summary: number of visa pathways, EU membership, score dimensions, drawbacks, top cities with rent ranges, PR/citizenship timelines. |
| Curated top destinations and recommended visas for citizens of a given country. Best first stop for "where should I move?" |
| Live intake status for round-based programmes: whether the programme is open, the date of the last round, and its cutoff score. |
Resources (4 base + dynamic templates)
transita://visas— full active visa cataloguetransita://countries— destination countries + visa countstransita://nationalities— index of curated nationality landing pagestransita://nationality/<slug>— single nationality page (e.g.transita://nationality/indian)
Prompts (3)
find-my-visa— guided eligibility quiz thentransita_match_visascompare-options— drivestransita_compare_visaswith a chosen set of idswhere-should-i-move— open exploration starting from nationality
Try it
Once installed, ask your AI assistant questions like:
"I'm an Indian software engineer with a master's and 5 years of experience. Where should I move?"
"Compare the US O-1A, Germany's EU Blue Card, and Portugal's D8 — which is fastest, cheapest, and which has the best path to permanent residency?"
"What does Portugal's D8 digital nomad visa actually require?"
"How do destination scores compare for Germany versus the Netherlands?"
The model will pick the right Transita tool, call it, and synthesise the answer. Visa data is verified by the Transita team monthly; every match links back to the official government source.
Configuration
Env var | Default | Purpose |
|
| Override the API base URL (useful for local dev against |
|
| Custom UA string for analytics. |
Free vs paid
Everything this MCP server exposes is free. The full document checklist + 30-day action plan is part of Transita's $9 paid plan and lives at https://transita.app/visa/<id>. The MCP server's tools include a checklist preview (lead time, ancillary cost, first section) and link to the full plan.
Development
git clone https://github.com/snenenenenenene/transita.git
cd transita/packages/mcp-server
bun install
bun run build
# Point at a local Transita dev server
TRANSITA_API_URL=http://localhost:3000 node dist/cli.jsTo smoke-test from the command line:
{
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"smoke","version":"0.0"}}}'
echo '{"jsonrpc":"2.0","method":"notifications/initialized"}'
echo '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
} | node dist/cli.jsPublishing to npm + the MCP Registry
Two-step flow. The MCP Registry stores metadata; npm hosts the artifact.
# 1. Publish to npm (must be on a fresh version; bump in package.json first)
cd packages/mcp-server
bun run build
npm publish --access public
# 2. Publish metadata to the MCP Registry
# Install mcp-publisher once: brew install mcp-publisher
# server.json is committed alongside this README.
mcp-publisher login github
mcp-publisher publishAfter publishing, the server is listed at https://registry.modelcontextprotocol.io and discoverable inside MCP-compatible clients.
License
MIT — see LICENSE.
Links
Website: https://transita.app
MCP landing page: https://transita.app/mcp
Source: https://github.com/snenenenenenene/transita/tree/main/packages/mcp-server
MCP protocol: https://modelcontextprotocol.io
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

mcp-travelcodeofficial
Alicense-qualityBmaintenanceEnables AI assistants to search flights and hotels, manage bookings, check flight status, and access delay statistics through the TravelCode corporate travel API, all via natural language conversations.112MIT- Alicense-qualityBmaintenanceEnables AI assistants to search and explore Australian occupation codes (ANZSCO), visa pathways, state nominations, and SkillSelect invitation round data.MIT
- Alicense-qualityCmaintenanceEnables querying passport visa rules for any nationality to destination pair.8MIT
Related MCP Connectors
Travel-compliance intelligence and curated booking for digital nomads and long-stay travellers.
Passport visa, entry & transit requirements for any country pair, with official government sources.
290+ quality-scored API capabilities for AI agents across 27 countries via MCP.
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/snenenenenenene/transita-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server