Skip to main content
Glama

createExperienceApplication

Start a new Experience Application for the caller. Any fields can be supplied now or filled in later via saveExperienceApplication — the applicant's name defaults from their Nomad Stays profile if not supplied. Call getCountries and getBusinessModels first to resolve experienceCountryId/postalCountryId/businessModelId, since country-specific rules (VAT number, tourism number, permitted business models) are enforced server-side and rejections name the specific field/reason. Experiences must run a minimum of 4 days. Requires NOMADSTAYS_MCP_AGENT_TOKEN.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
zipNo
cityNo
stateNo
maxPaxNoMaximum participants
mobileNo
streetNo
daysQtyNoMinimum 4 days, enforced server-side
websiteNo
commentsNo
vatNumberNoRequired if the postal country's vatNumberRequired flag is true (see getCountries)
hasKitchenNo
descriptionNo
businessNameNo
hasInsuranceNo
monthlyPriceNoPrice per person (USD)
downloadSpeedNo
tourismNumberNoRequired if the experience country's tourismNumberRequired flag is true (see getCountries)
applicantEmailNo
experienceNameNo
workFacilitiesNo
businessModelIdNotbBusinessModel.EntryID — use getBusinessModels. If the experience country's bookingModelsRestricted flag is true, only a 'StayDirect'-prefixed model is accepted.
postalCountryIdNotbCountry.CountryId for the applicant's billing/postal address — used only to check whether a VAT number is required, and stored on the member's business profile (not on the application itself). Use getCountries to find a value.
applicantLastNameNoOverrides the profile default for this application only — does not change the member's profile
laundryFacilitiesNo
applicantFirstNameNoOverrides the profile default for this application only — does not change the member's profile
experienceCountryIdNotbCountry.CountryId for where the experience actually takes place — this is the country the application itself is filed under. Use getCountries to find a value.
availabilitySupplierNo
overnightLocationsQtyNo

Schema Changelog

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

  1. Added

TDQS

A4.6/5.0
Behavior4/5

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

It discloses several non-obvious behaviors: the applicant name defaults from the Nomad Stays profile, country-specific rules are validated server-side with field-specific rejections, experiences must run at least 4 days, and a token is required. It does not explicitly state the application's draft lifecycle or return value, but the mention of filling in later via saveExperienceApplication implies a draft workflow; overall this adds substantial context beyond the annotations.

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?

Four front-loaded sentences cover purpose, alternatives, prerequisites, validation rules, and auth with no filler. Each sentence earns its place, and the structure flows naturally from what the tool does to how to use it correctly.

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

Completeness4/5

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

For a 28-optional-parameter create tool with no output schema, the description covers the essential context: why to call helper tools, what server-side rules apply, how to update later, and authorization. It could further clarify the post-creation state or return shape, but the provided context is sufficient for a reasonably safe first invocation.

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

Parameters4/5

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

With only 36% schema description coverage, the description compensates by explaining the key relationships for experienceCountryId, postalCountryId, and businessModelId, including VAT/tourism number requirements. Many of the remaining 28 parameters are optional and deferred, and the description says any fields can be supplied later, reducing the risk of incorrect invocation despite incomplete per-parameter detail.

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

Purpose5/5

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

The description opens with 'Start a new Experience Application', a specific verb and resource, and immediately distinguishes this creation action from saveExperienceApplication and submitExperienceApplication. It clearly frames the tool as initiating a draft that can be completed later.

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

Usage Guidelines5/5

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

The description explicitly instructs the caller to call getCountries and getBusinessModels first to resolve experienceCountryId/postalCountryId/businessModelId, and points to saveExperienceApplication for filling in fields later. It also notes server-side enforcement and the 4-day minimum, giving clear when-to-use and when-to-defer context.

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.7/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions differentiating the many getStaysBy* search variants and the four availability tools. However, the overlap between checkStayAvailability, getRoomAvailability, findNearestAvailability, and getAvailabilityByMonth could still cause confusion for an agent, though the descriptions largely mitigate this.

Naming Consistency3/5

The tools mostly follow a verb-noun pattern with get*, update*, create*, and delete* dominating, but the mix of additional verbs (check, find, list, search, signup, book, quote, purchase, submit, save, reorder, upload) and inconsistent noun forms (Stay vs. Stays, MyStay vs. Stay) prevents a fully predictable naming scheme. CamelCase is consistent, but the verb variety is high.

Tool Count1/5

With 76 tools, this server far exceeds the well-scoped range and even the 50+ threshold for extreme mismatch. While the platform covers multiple domains, this many tools is overwhelming for an agent and would likely be better split into focused sub-servers.

Completeness3/5

The tool surface is broad, covering search, stay management, applications, bookings, products, and help center. However, there are notable lifecycle gaps: no cancel booking, no delete stay, no delete application, and no way to update or delete a booking. These missing operations create potential dead ends for common workflows.