Transita MCP
Server Details
Visa eligibility matcher and immigration intelligence for MCP-compatible AI assistants. Scores ~45 visa pathways across 8 countries with country comparisons, document checklist previews, and curated nationality guides. Every match linked back to the official government source.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 6 of 6 tools scored.
Each tool targets a distinct task: comparing pathways, country overview, profile matching, live status, nationality search, and single-visa details. Even though match_visas and search_by_nationality both recommend visas, their inputs (profile vs nationality) are clearly separated.
All tools share the 'transita_' prefix and use snake_case, making them recognizable and consistent in style. However, some names are verb-object (compare_visas, match_visas, search_by_nationality) while others are noun-noun (country_overview, programme_status, visa_details), so the pattern is slightly inconsistent.
Six tools is an appropriate size for an immigration-information server, covering core user journeys without bloat. Each tool has a clear purpose and none feel redundant.
The set covers comparison, overview, matching, status checking, nationality search, and detailed visa info, which addresses common user questions. Minor gaps like a dedicated document-checklist or eligibility-rules tool exist, but the core workflows are supported.
Available Tools
6 toolstransita_compare_visasCompare visasAInspect
Compare 2-3 visa pathways side-by-side. Returns processing time, cost, validity, PR-pathway, and a delta summary highlighting the fastest, cheapest, and most permanent option.
| Name | Required | Description | Default |
|---|---|---|---|
| visa_ids | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It discloses the output behavior (returns processing time, cost, validity, PR-pathway, and a delta summary) and adds the notable trait of highlighting fastest/cheapest/most permanent options. It does not cover all possible edge cases, but for a read-only comparison tool this is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the action ('Compare') and resource. Both sentences are informative, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description adequately covers return values (processing time, cost, validity, PR-pathway, delta summary). The single parameter is mostly explained, but the description could note that visa_ids must correspond to pre-known pathway identifiers, a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the only parameter is a generic array of strings. The description adds meaning by indicating these are visa pathway identifiers and constraining to 2-3, but it does not explain where the IDs come from or their expected format. Some compensation occurs, but not fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Compare') and resource ('visa pathways'), clearly stating it compares 2-3 side-by-side. The return value summary differentiates it from sibling tools like transita_visa_details, which likely focuses on a single visa.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies use when comparing 2-3 visa pathways, which is a distinct scenario from single-detail or matching tools. It does not explicitly name alternatives or exclusions, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transita_country_overviewCountry overviewAInspect
Get summary data for a destination country: number of visa pathways, EU member status, score dimensions, drawbacks, top cities with rent ranges, and PR/citizenship timelines.
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It indicates a read-only operation ('Get') and lists the return content, adding some transparency. However, it does not disclose potential error behavior, data source, rate limits, or limitations beyond the basic scope.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence, front-loaded with the action, and includes a comprehensive list of what the tool returns without any wasteful or redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool and absence of output schema, the description adequately communicates the key return categories (visa pathways, EU status, cities, PR timelines). It lacks detail on response format or edge cases, but is sufficient for a starting-point overview tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only a country_code string with no description (0% coverage). The description adds context by saying 'for a destination country', clarifying the parameter's role. However, it does not specify the expected format (e.g., ISO code) or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Get') and resource ('summary data for a destination country'), and enumerates the content areas (visa pathways, EU status, score dimensions, etc.). This distinguishes it from the sibling visa-specific tools like transita_compare_visas or transita_visa_details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for a high-level country overview but does not explicitly mention when to use this tool versus alternatives, nor does it provide exclusions or prerequisites. It is inferred from the sibling tool names but not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transita_match_visasMatch visasAInspect
Score a user's profile against every visa pathway Transita supports. Returns the top matches ranked by eligibility, with timeline, cost, and links to official sources. EU citizens automatically surface freedom-of-movement options first.
| Name | Required | Description | Default |
|---|---|---|---|
| age | No | ||
| goal | No | ||
| timeline | No | ||
| education | No | ||
| income_usd | No | ||
| work_field | No | ||
| work_years | No | ||
| citizenship | Yes | ||
| current_country | No | ||
| target_countries | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the return format (top matches, ranking, timeline, cost, links) and a specific behavioral nuance (EU citizens get freedom-of-movement options first). It doesn't explicitly state read-only or auth requirements, but the described behavior is complete for a matching tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the primary action and outcome. No filler; every sentence adds value, including the EU-specific behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (10 params, no output schema), the description covers the return value and EU pattern but omits guidance on parameter usage (e.g., which optional fields matter, how citizenship interacts with target_countries). Minimum viable but with gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description does not mention any of the 10 parameters (e.g., citizenship, age, goal). It only refers generically to 'profile,' leaving the agent to infer that profile fields map to the schema. This fails to compensate for the lack of in-schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states the verb 'Score' and the resource 'a user's profile against every visa pathway Transita supports.' It clearly distinguishes this from siblings like 'compare_visas' or 'visa_details' by focusing on ranking all pathways for a profile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context: use when you have a user profile and want matched visa pathways ranked by eligibility. Does not explicitly mention when not to use it or name alternatives, but the context is strong enough for a typical agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transita_programme_statusProgramme status (is this visa open now?)AInspect
Check the live intake status of a single visa pathway: whether it is currently open, the last selection round and cutoff score (for round-based programmes like Express Entry, AU SkillSelect, or the US H-1B lottery), what is expected next, and the official source. Call this before recommending a pathway so you never send a user toward a closed or paused programme. Continuous-intake visas return an 'open' status.
| Name | Required | Description | Default |
|---|---|---|---|
| visa_id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses several behaviors: live status, round-based vs continuous-specific fields, expected next step, official source, and the 'open' status for continuous-intake visas. It does not mention error/edge-case behavior, but given its read-only nature, this is a solid disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, with the main purpose front-loaded and usage guidance immediately following; the final clause about continuous-intake visas adds needed behavioral detail without excess.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter status tool with no output schema, the description covers the core return fields (open status, cutoff, expectations, source) and usage timing. It lacks guidance on where visa_id comes from and how to handle unknown IDs, so it is not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only a required visa_id string with no description (0% schema coverage), and the description does not explain the format, source, or example values for visa_id. It only implies it identifies a 'single visa pathway', leaving the agent to guess how to obtain/format the ID; sibling tools are not referenced for ID resolution.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Check the live intake status of a single visa pathway', naming a specific verb and resource, and enumerates concrete outputs (open/closed, last selection round, cutoff, expected next, official source). The title and mention of 'single pathway' distinguish it from siblings like transita_compare_visas or transita_visa_details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly instructs 'Call this before recommending a pathway' to avoid directing users to closed programmes, giving a clear when-to-use rule. It implies round-based vs continuous-intake contexts but does not explicitly name alternative tools or list when-not-to-use conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transita_search_by_nationalitySearch visas by nationalityAInspect
Show top destinations and recommended visa pathways for citizens of a given country. Ideal first stop for the question 'Where should I move?'. Returns 4-6 destinations with the best-fit visa for each, key stats, and FAQ. Falls back gracefully if a slug isn't yet curated.
| Name | Required | Description | Default |
|---|---|---|---|
| nationality | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the output structure (4-6 destinations, key stats, FAQ) and gracefully notes a fallback behavior for uncurated slugs. This is more transparent than typical descriptions, though it could go further by confirming read-only behavior or any rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each earning its place. It opens with the primary action, then provides usage context, and finishes with output details and a behavioral caveat. There is no fluff or repetition, achieving a high level of conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description adequately describes what the tool returns (destinations, visa options, stats, FAQ). It also sets expectations for edge cases. Missing are example inputs or explicit statement of the nationality format, but for a simple one-parameter search tool, the description is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only the parameter name 'nationality' with no description. The description adds meaning by referring to "citizens of a given country" and mentions "slug" in the fallback context, implying the parameter takes a slug. This is helpful but does not fully specify the expected format (e.g., country name, ISO code, or slug). The description partially compensates for the 0% schema coverage, but more detail would be better.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: "Show top destinations and recommended visa pathways for citizens of a given country." It also distinguishes itself by positioning as the "ideal first stop" for a broad question, which differentiates it from sibling tools like visa_details or compare_visas. The output specifics (4-6 destinations, best-fit visa, key stats, FAQ) make the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear when-to-use scenario: "Ideal first stop for the question 'Where should I move?'". This gives context for when the tool is appropriate. However, it does not explicitly mention alternatives or when not to use it, which prevents a score of 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transita_visa_detailsVisa detailsAInspect
Fetch full details for a single visa pathway: eligibility category, processing time, fees, validity, PR timeline, and a free preview of the document checklist (lead time, ancillary cost, first section). The full multi-section checklist is part of Transita's $49 paid action plan.
| Name | Required | Description | Default |
|---|---|---|---|
| visa_id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds value by revealing that the checklist is only a free preview and that the full multi-section checklist is part of a paid plan. It lists the specific fields returned, giving the agent a clear expectation. It does not mention error handling, rate limits, or authentication, but for a simple read-only fetch tool, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, with the core purpose front-loaded in the first sentence. The second sentence adds essential context about the paid plan without redundancy. Every piece of information earns its place, and there is no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema, no annotations), the description is fairly complete: it lists the return fields and notes the paid limitation. It could mention the response format or authentication, but the provided detail is sufficient for the agent to understand what to expect and when to use it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one parameter (visa_id) with no description (coverage 0%). The description does not explain visa_id beyond calling it a 'single visa pathway', which implies its identity but not its format, source, or how to obtain it. Since schema coverage is zero, the description needed to compensate, and it does not meet that need.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Fetch') and resource ('full details for a single visa pathway'), and enumerates the exact content delivered (eligibility, fees, etc.). This distinguishes it from sibling tools that compare, overview, match, or search, making the purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when you need detailed information for one specific visa pathway. It does not explicitly mention when not to use it or name alternatives, but the phrase 'single visa pathway' implies a focused use case that differentiates it from broader comparison or search tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceGTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.117371MIT

industrylens-mcpofficial
Flicense-qualityCmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
Sociality MCPofficial
Alicense-qualityDmaintenanceSocial media analytics, post insights, and competitor benchmarking for AI agents.6MIT- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.1761MIT