Skip to main content
Glama

create_visa

Record a visa the user holds or has applied for.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNo
cost_paidNo
visa_nameNo
visa_typeYese.g. tourist, business, student, work, digital_nomad, transit
issue_dateNoISO date, e.g. 2026-08-01
expiry_dateNoISO date, e.g. 2026-08-01
max_entriesNo
visa_numberNo
country_codeYes
cost_currencyNo
entries_allowedNosingle, double, multiple
application_dateNoISO date, e.g. 2026-08-01
embassy_consulateNo
passport_country_codeNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already establish that this is a write operation, non-idempotent, and non-destructive. The description adds little beyond that: it does not describe duplicate behavior, persistence effects, required ownership, status implications, or what happens after creation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear, front-loaded sentence with no filler. It efficiently communicates the basic purpose, and any missing detail is a completeness issue rather than a conciseness issue.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 14 parameters, only 2 required, and no output schema, this description is too thin. It does not explain which parameters belong to held visas versus applied-for visas, how entries and costs relate, or how the tool should be invoked correctly in different scenarios.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 36% and the tool description does not mention any parameter names, required fields, formats, or relationships. It does not compensate for underspecified fields like max_entries, entries_allowed, cost_paid, cost_currency, or passport_country_code.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states what the tool does: it records a visa the user holds or has applied for. It is specific enough to distinguish from non-visa tools like add_passport or create_flight, but it does not explicitly contrast with update_visa or delete_visa, so it stops short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance is given relative to sibling tools such as update_visa, delete_visa, or list_visas. The phrase 'holds or has applied for' gives useful context but does not explain when an agent should choose create_visa instead of another tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (e.g., create_flight vs create_activity vs create_stay), and descriptions clarify overlaps like stay vs accommodation. The only potential confusion (create_activity covers travel legs) is explicitly explained, so misselection is unlikely.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using standard verbs: create, delete, get, list, search, set, update, add, remove, leave. Nouns are consistently singular and descriptive (passport, journey, stay, flight, accommodation). No mixed conventions or vague verbs.

Tool Count4/5

With 36 tools, the count is higher than typical, but the server covers a wide domain: journeys, stays, activities, flights, accommodations, visas, documents, preferences, and sharing. Each entity has CRUD operations plus search and status, so the count is justified, though bordering on heavy.

Completeness5/5

The tool surface is remarkably complete: full CRUD for every entity (journeys, stays, activities, flights, accommodations, visas), user profile access (get_me), search utilities, sharing controls (join links, member management), and preferences. No obvious dead ends or missing lifecycle steps; even edge cases like deleting bookings before stays are handled.

Resources