Skip to main content
Glama

saveExperienceApplication

Update any subset of fields on an existing, not-yet-submitted Experience Application. Same field set and validation rules as createExperienceApplication — only pass the fields you're changing. Fails with a 409 if the application has already been submitted. Requires NOMADSTAYS_MCP_AGENT_TOKEN.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
zipNo
cityNo
stateNo
maxPaxNo
mobileNo
streetNo
daysQtyNoMinimum 4 days, enforced server-side
websiteNo
commentsNo
vatNumberNo
hasKitchenNo
descriptionNo
businessNameNo
hasInsuranceNo
monthlyPriceNo
applicationIdYesThe application's ID
downloadSpeedNo
tourismNumberNo
applicantEmailNo
experienceNameNo
workFacilitiesNo
businessModelIdNotbBusinessModel.EntryID — use getBusinessModels.
postalCountryIdNotbCountry.CountryId — used only for the VAT check, stored on the business profile, not on the application. Use getCountries.
applicantLastNameNo
laundryFacilitiesNo
applicantFirstNameNo
experienceCountryIdNotbCountry.CountryId — the country the application itself is filed under. Use getCountries.
availabilitySupplierNo
overnightLocationsQtyNo

Schema Changelog

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

  1. Added

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses partial update semantics, the 409 failure on submitted applications, and the auth requirement. Annotations only indicate readOnlyHint=false and destructiveHint=false, so the description adds substantial behavioral context beyond the structured data.

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?

Three concise sentences: the first states the purpose, the second explains the field set and usage, the third covers error handling and auth. No wasted words, front-loaded with the core operation.

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?

Given the complexity (29 params, no output schema), the description covers the essential context: update semantics, the critical precondition (not submitted), and the auth requirement. It doesn't mention the success response or other error cases, but the reference to createExperienceApplication fills in validation rules. A 4 is fair.

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 17% schema coverage, the description compensates by explaining the partial update rule ('only pass the fields you're changing') and referencing createExperienceApplication for the full field set and validation. However, it does not add meaning for most individual fields, so a 4 is appropriate.

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 clearly states the verb 'Update' and the resource 'existing, not-yet-submitted Experience Application'. It distinguishes from siblings by noting the update scope ('any subset of fields') and the precondition ('not-yet-submitted'), differentiating it from create and submit tools.

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?

Explicitly says to pass only changed fields, references createExperienceApplication for same field set and validation rules, and warns that it fails with a 409 if already submitted. Also states the required auth token. This gives clear when-to-use and when-not-to-use guidance.

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.