Skip to main content
Glama

xcape

CI

Vacation-quoting MCP server for travel agents, plus a cross-platform assistant skill that turns a plain-language client brief ("family of four, Lisbon, spring break, $8k") into a priced, bookable proposal with stays, activities, and dining.

How it works

One stdio MCP server composes three paid APIs:

Leg

Source

What you get

Cost shape

Stays

Bright Data Web Scraper API (Booking.com)

Live-scraped hotel listings with nightly rates

Per record (~$1–1.5/1K); 30–120s per search

Activities

Viator Partner API v2

300k+ bookable tours/activities, real availability, affiliate links

Free (commission model)

Dining & POIs

Google Places API (New)

Restaurants, ratings, price level, hours, Maps links

Per request, tiered by field mask

Every proposal carries an indicative-rates disclaimer: prices are captured live at quote time and must be re-confirmed at booking. There are no booking transactions — proposals link out (Viator links carry your affiliate campaign for commission attribution).

Related MCP server: com.stayingapi/hotel-vacation-rental-mcp

Tools

  • build_proposal — one-shot: full request in, ranked itinerary + cost breakdown + Markdown proposal out

  • build_options_page — interactive HTML options page (lodging, transfers, experiences, day trips, dining); the agent picks options with the client and clicks "Generate quote" in-page for the final branded, printable quote

  • search_stays — live Booking.com scrape (slow, per-record billed; keep maxResults ≤10)

  • search_activities — Viator product search with persona-aware tags

  • get_activity_availability — firm per-person pricing for specific dates

  • search_dining — Google Places search, profile-aware

  • enrich_place — Place Details for shortlist finalists only

Profiles (family, bachelorette, couples, solo, seniors, adventure, luxury) drive activity tags, dining types, and scoring. A "family of four" yields kid-friendly activities and suites; a bachelorette yields adult group experiences and nightlife-adjacent dining.

Setup

Requires Node ≥ 20. The installer detects the platform, checks Node, installs dependencies, builds, walks you through credentials, validates the config, and optionally registers the server with Claude Desktop:

# macOS / Linux (Git Bash on Windows also works)
./install.sh
# Windows (PowerShell)
powershell -ExecutionPolicy Bypass -File install.ps1

Manual equivalent:

npm install
npm run build
cp .env.example .env   # then fill in keys
npm run check-config

Note: the project .env is authoritative — it overrides inherited shell variables, so a stale exported key in your shell profile cannot silently win over the configured .env.

Getting credentials

Bright Data (stays) — optional; search_stays returns a setup error until configured, the other legs work without it

  1. Sign up at brightdata.com → account settings → copy your API key → BRIGHTDATA_API_KEY

  2. Dashboard → Web Scraper API → dataset library → find the Booking.com listings search scraper → copy its dataset ID → BRIGHTDATA_BOOKING_DATASET_ID

  3. Note: the exact input schema (URL vs structured search fields) depends on the dataset variant; if search_stays errors on input validation, check the dataset's input spec in the dashboard and adjust src/providers/brightdata.ts.

Google Places (New) (lodging + dining)

  1. Google Cloud Console → create project → enable billing

  2. Enable "Places API (New)" (not the legacy Places API)

  3. Create an API key → GOOGLE_MAPS_API_KEY. If you restrict the key, make sure places.googleapis.com is in the allowed list — a key restricted to other Google services fails with API_KEY_SERVICE_BLOCKED.

Viator Partner API v2 (activities)

  1. Sign up at partners.viator.com (free) → request a Basic Access API key

  2. Sandbox key is issued immediately → VIATOR_API_KEY with VIATOR_ENV=sandbox

  3. Production key is generated separately in the portal and can take ~24h to activate. Sandbox and production keys are not interchangeable.

  4. Copy your affiliate campaign value → VIATOR_CAMPAIGN_VALUE (appended to every activity link for commission tracking)

Configuration

BRIGHTDATA_API_KEY=
BRIGHTDATA_BOOKING_DATASET_ID=
GOOGLE_MAPS_API_KEY=
VIATOR_API_KEY=
VIATOR_ENV=sandbox            # switch to production once your prod key activates
VIATOR_CAMPAIGN_VALUE=
AGENCY_CURRENCY=USD

Keys are shared agency-wide: every agent's client quotes against the same accounts and affiliate ID.

Proposals render with your letterhead when branding is configured — logo, agency name, tagline, contact line at the top and a "Prepared by …" sign-off at the foot:

AGENCY_NAME=Sunrise Travel Co
AGENCY_LOGO_URL=https://your-domain.com/logo.png   # hosted URL renders in Markdown viewers
AGENCY_CONTACT=+1 555 0100 · hello@sunrise.travel
AGENCY_TAGLINE=Tailor-made trips

Per-proposal overrides are supported via build_proposal's optional branding argument (agencyName, logoUrl, contactLine, tagline) — useful for multi-brand agencies or co-branded documents. The resolved branding is also exposed as proposal.agency in the structured JSON for downstream renderers (PDF, email).

Install in your assistant

The fastest paths, in order:

  1. Claude Desktop, guided: run ./install.sh / install.ps1 and answer "y" at the registration prompt. It merges an xcape entry into claude_desktop_config.json (backing up the existing file first) with credentials taken from .env. Restart Claude Desktop afterwards.

  2. One-click bundle (DXT): npm run pack:dxt builds a .dxt desktop-extension file (see manifest.json); double-clicking it in Claude Desktop installs the server and prompts for the API keys through the UI.

  3. Any other client: npm run print-config prints a ready-to-paste mcpServers snippet with absolute paths and the current credentials, plus the config-file location for this machine.

Claude Code:

claude mcp add xcape -- node /absolute/path/to/xcape/dist/index.js

Kimi Code / Cursor / others — same command/args/env shape as the --print-config snippet in their MCP settings.

ChatGPT — MCP support varies by client; where custom MCP servers are configurable, use the same command/args/env. Otherwise paste skills/xcape-trip-planner/SKILL.md into the conversation as instructions and drive the server through any MCP bridge.

The skill

skills/xcape-trip-planner/ is a platform-neutral assistant skill (Claude Agent Skills format — YAML frontmatter + Markdown, equally usable as Kimi skill or ChatGPT custom instructions). It teaches the assistant to:

  1. Run intake on the agent's brief (party, dates, destination, budget, vibe) and pick a profile

  2. Drive the tools in a cost-aware order

  3. Write the proposal from a fixed template: totals + per-person pricing, day-by-day itinerary, alternatives, verbatim booking links, indicative-rates disclosure, and an explicit Gaps section when a data leg fails

Install it alongside the MCP server so the model knows how to use the tools well.

Development

npm test          # vitest + msw; no real keys needed, no network
npm run build     # tsc
npx @modelcontextprotocol/inspector node dist/index.js   # manual tool testing

Cost guardrails (built in)

  • Bright Data: results hard-capped at 20/call; build_proposal defaults to ≤10

  • Google: field masks pinned to narrow constants — tools never accept arbitrary field lists (a snapshot test guards this)

  • Viator: search counts clamped to provider max (50); Retry-After honored on 429

  • Google ToS: no long-term warehousing of place data — caching is in-memory, per-process only

Known limitations / roadmap

  • Stays latency: live scraping takes 30–120s and bills per record. If this proves too slow in practice, the fix is adding a hotel affiliate/rates API as a fast path — not built yet.

  • No flights: a Bright Data Google Flights scraper can be added as search_flights later.

  • No booking: quoting + links only. In-chat Viator booking requires Viator Full+Booking approval, certification, and PCI-aware payments.

  • Local stdio only: each agent installs the server on their own machine with the shared keys. A hosted multi-tenant version is a separate project.

Available Tools

7 tools
build_options_pageA

Builds a self-contained interactive HTML options page for a trip: lodging (single-select), airport/hotel transfers, profile-matched experiences, requested day trips, and dining. The agent selects options with the client and clicks 'Generate quote' in the page to produce the final priced, branded quote (print-to-PDF friendly). Lodging comes from Google Places (rate on request); priced options come from Viator. Writes the file to disk and returns its path.

ParametersJSON Schema
NameRequiredDescriptionDefault
adultsYes
profileYes
brandingNo
childrenNo
dayTripsNoDay trip targets, e.g. ['Santo Domingo', 'Saona Island']
maxStaysNo
dateLabelNoFree-text dates, e.g. 'Mar 14-21, 2026' or 'Flexible dates'
maxDiningNo
outputPathNoWhere to write the HTML file. Defaults to proposals/<slug>.html
clientLabelNoClient-facing label, e.g. 'The Harrisons'
destinationYesResort area or city, e.g. 'Punta Cana, Dominican Republic'
includeStaysNo
includeDiningNo
maxActivitiesNo
includeTransfersNoInclude airport/hotel shuttle options
maxDayTripsPerTargetNo

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses that the tool writes a file to disk, returns its path, that lodging is 'rate on request', and that priced options come from Viator. It also mentions the interactive 'Generate quote' button and print-to-PDF friendliness. It does not cover edge cases or failure modes, but the core side effects are stated.

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 three sentences, front-loaded with the core purpose, and every sentence adds value: first defines the page, second explains the interactive flow and sources, third states the file side effect. No redundant filler or repetition of schema details.

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 tool with 16 parameters and no output schema, the description provides a solid high-level picture: contents, data sources, interactivity, output format, and file writing. It is slightly incomplete regarding whether the tool fetches data itself or expects pre-fetched data from sibling search tools, and it does not detail the structure of the generated HTML page, but it is adequate for most selection decisions.

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

Parameters3/5

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

Schema description coverage is only 38%, so the description must compensate. It adds meaningful context for several parameters (profile-matched experiences, requested day trips, dining, transfers), but leaves many parameters (maxStays, maxActivities, branding, children, etc.) unexplained beyond their schema names. The description gives an overall workflow but not per-parameter semantics, which is a moderate gap given the low coverage.

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 uses a specific verb ('Builds') and a clear resource ('self-contained interactive HTML options page for a trip'), listing the major content sections (lodging, transfers, experiences, day trips, dining). It also distinguishes itself from sibling tools by explaining the interactive selection flow and the final quote generation, making its role unique relative to build_proposal.

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

Usage Guidelines4/5

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

The description implies when to use the tool by outlining the interactive client selection workflow and mentioning data sources (Google Places, Viator) and output (print-to-PDF quote). It does not explicitly state 'use this when...' or contrast with alternatives like build_proposal, but the context is clear enough for an agent to decide between this and search tools.

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

build_proposalA

One-shot composite: runs stays + activities + dining searches in parallel, ranks options by profile fit and budget, and returns both structured JSON and a rendered Markdown proposal with a cost breakdown and an indicative-rates disclaimer. A failed provider leg is flagged, not fatal.

ParametersJSON Schema
NameRequiredDescriptionDefault
adultsYes
checkInYes
profileYes
brandingNoPer-proposal branding override; falls back to the server's AGENCY_* env config.
checkOutYes
childrenNo
maxStaysNo
maxDiningNo
destinationYes
maxActivitiesNo
budgetPerNightNo
maxPricePerActivityNo

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations, the description carries the full transparency burden, and it delivers: it discloses parallel execution, ranking criteria, return format (JSON + Markdown), cost breakdown, an indicative-rates disclaimer, and graceful handling of failed provider legs. This goes well beyond a simple 'build a proposal' statement and is genuinely revealing about the tool's behavior.

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, dense sentence that packs in the composite nature, parallel execution, ranking, output types, cost breakdown, disclaimer, and failure handling. Every clause earns its place with no filler or repetition, making it both concise and information-rich.

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 tool's complexity, the absence of annotations, and a missing output schema, the description covers a surprising amount: what the tool does, how it executes, what it returns, and how failures are handled. It falls short only on parameter-level guidance and explicit usage alternatives, which prevents it from being fully complete.

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 8%, so the description should compensate for the 12 parameters, but it does not. It only loosely references 'profile fit and budget' without explaining the actual parameter names, required fields, formats, or the semantics of options like maxStays or maxDining. This leaves the agent to rely almost entirely on the bare schema, which lacks descriptions for most properties.

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 a specific composite action: it runs stays, activities, and dining searches in parallel, ranks results by profile fit and budget, and returns both structured JSON and Markdown. It clearly distinguishes itself from sibling tools like search_stays and search_dining by presenting itself as a one-shot composite rather than a single-domain search.

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

Usage Guidelines4/5

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

The phrase 'one-shot composite' clearly indicates this tool is for assembling a full proposal rather than searching a single category, which provides clear context for when to use it. It does not explicitly mention when not to use it or name alternatives, but the parallel-search framing and the sibling list make the intended usage reasonably clear.

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

enrich_placeA

Fetch Google Place Details (website, phone, hours, editorial summary) for one shortlisted place. Billed at a higher tier than search — call only for shortlist entries.

ParametersJSON Schema
NameRequiredDescriptionDefault
placeIdYesGoogle place ID from a search_dining shortlist entry

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It reveals the data returned (website, phone, hours, editorial summary) and the cost implication ('Billed at a higher tier'), adding context beyond the schema. It does not discuss error handling or id validity, but for a simple fetch, this is sufficient.

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?

Two sentences, front-loaded with the main action and data fields, followed by a concise cost/usage warning. Every sentence adds value with no repetition or fluff.

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 tool's simplicity (one param, no output schema), the description covers the key aspects: what is fetched, from where, and when to use it. It does not describe return structure, but that is not expected without an output schema. It is complete enough for an agent to invoke the tool correctly.

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?

The schema already describes the sole parameter as 'Google place ID from a search_dining shortlist entry' with 100% coverage. The description reinforces this by mentioning 'shortlisted place' and 'shortlist entries', adding clarity to the expected input source without unnecessary 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 clearly states the tool's function: 'Fetch Google Place Details' with specific fields (website, phone, hours, editorial summary). It distinguishes itself from sibling search tools by focusing on a single shortlisted place rather than listing options.

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 provides explicit usage guidance: 'call only for shortlist entries' and warns about the higher billing tier compared to search. This implicitly directs users to use search_dining for initial listing and this tool for enrichment, making the when-to-use context clear.

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

get_activity_availabilityA

Check operating schedule and per-person/total pricing for shortlisted Viator product codes on a specific date, using the product's weekly recurring schedule (days of week + blackout dates). Prices are converted to the agency currency. This is schedule-level availability — always re-confirm at booking time.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesDate to check, YYYY-MM-DD
travelersYes
productCodesYesViator product codes from a search_activities shortlist

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description adds crucial context: it is schedule-level (not real-time), prices are converted to agency currency, and booking requires re-confirmation. It implies read-only by saying 'check', but doesn't explicitly state it's non-destructive. The warning about re-confirmation is a valuable behavioral note.

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 sentences, each with a distinct purpose: purpose, conversion detail, and caveat. No redundancy or filler; appropriately sized.

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?

The tool is relatively simple, and the description covers purpose, input scope, key behaviors, and a warning. It doesn't specify exact response fields, but 'operating schedule and per-person/total pricing' gives a good indication. Overall, it's sufficient for an agent to use it correctly.

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

Parameters3/5

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

Schema covers date and productCodes but not travelers. The description mentions 'per-person/total pricing', which hints at travelers' role, but doesn't explicitly define the parameter or its constraints. Thus it adds some meaning beyond the schema but does not fully compensate for the missing travelers description.

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?

Clear verb 'Check' with specific resource ('Viator product codes'), scope ('shortlisted'), and time ('specific date'). It also differentiates from sibling tools by referencing the 'search_activities shortlist', making its role obvious.

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

Usage Guidelines4/5

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

The description indicates this is a follow-up to search_activities, for checking schedule and pricing on shortlisted codes. It also notes the schedule-level nature and advises re-confirmation, which guides the agent on appropriate use. However, it doesn't explicitly mention alternatives or when not to use.

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

search_activitiesA

Search tours and activities for a destination via the Viator Partner API. The party profile maps to Viator tags; results include rating, per-person from-price (converted to the agency currency) and a verbatim Viator productUrl with the affiliate campaign-value appended.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoExtra Viator tag keywords on top of the profile mapping
datesNoOptional trip date range (advisory; returned in output for context)
profileYesParty profile driving tag selection
maxPricePPNoMax price per person in the agency currency
maxResultsNo
destinationYesDestination name, resolved to a Viator destination ID

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses useful behavioral details: party profile mapping to tags, currency-converted prices, and appended affiliate campaign values. However, it does not mention the advisory nature of dates or any rate limits/error behavior, leaving some gaps.

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?

Two concise sentences, front-loaded with the action, and every clause adds value. No redundant or promotional language.

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?

With no output schema, the description adequately summarizes key result fields (rating, price, URL) and behavioral nuances (affiliate tagging). It omits the advisory-date detail, but that is captured in the input schema. Overall complete for a search tool.

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

Parameters3/5

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

Schema coverage is high (83%), so baseline is 3. The description adds a little context about profile-to-tag mapping but largely restates schema info; it does not clarify maxResults or other undocumented parameters beyond what schema defaults provide.

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 a specific verb ('Search') and resource ('tours and activities') with a destination, and it clearly distinguishes from sibling tools like search_stays and search_dining by domain. The Viator API reference adds operational context.

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

Usage Guidelines4/5

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

The description clearly implies usage for tours/activities searches based on domain, and the sibling tool names (search_stays, search_dining) reinforce differentiation. However, it does not explicitly state when-not-to-use or list alternative tools.

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

search_diningA

Search restaurants/POIs via Google Places API (New) using pinned, billing-safe field masks. The party profile steers cuisine type and price levels. Attributions are passed through per Google ToS.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileYes
maxResultsNo
destinationNoCity/area text, e.g. 'Barcelona'. Either destination or nearCoordinates is required.
priceLevelsNoOverrides the profile's default price-level filter
nearCoordinatesNoSearch near a point (e.g. the chosen stay) instead of a text destination

TDQS

A4.4/5.0
Behavior4/5

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 use of pinned, billing-safe field masks (cost control), profile steering behavior, and Google ToS attribution pass-through. This adds meaningful behavioral context beyond the schema, though it does not cover rate limits or return format.

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 compact (two sentences) and front-loaded with the primary action and resource. Every sentence provides functional value without redundancy.

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 lack of output schema and annotations, the description covers key aspects: purpose, API source, profile steering, billing safety, and attribution requirements. Parameter constraints are handled in the schema (e.g., destination/nearCoordinates orthogonality, maxResults bounds). Minor gaps exist around output shape and edge-case behavior, but overall it supports correct usage.

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?

The description adds semantic value to the key required parameter 'profile' by explaining it influences cuisine and price levels. Schema coverage is 60% (destination, priceLevels, nearCoordinates have descriptions), so the description compensates for the otherwise undocumented 'profile' behavior.

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 ('Search') and the resource ('restaurants/POIs') and specifies the underlying API ('Google Places API (New)'). It distinguishes itself from sibling tools like 'search_stays' and 'search_activities' by explicitly targeting dining/POI search.

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

Usage Guidelines4/5

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

The description provides clear context that this tool is for restaurant/POI search and that the 'profile' parameter steers cuisine type and price levels. It implicitly differentiates from alternatives by content, though it does not explicitly name when not to use it or mention alternatives.

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

search_staysA

Search vacation stays (hotels/apartments) for a destination and date range via Bright Data's Booking.com listings scraper. Prices are indicative, scraped at quote time. Can take up to 120s; on timeout returns an empty list with a note.

ParametersJSON Schema
NameRequiredDescriptionDefault
adultsYes
checkInYesCheck-in date, YYYY-MM-DD
checkOutYesCheck-out date, YYYY-MM-DD
childrenNo
maxResultsNo
destinationYesCity or area, e.g. 'Paris' or 'Lisbon coast'
budgetPerNightNoMax price per night in the agency currency

TDQS

A4/5.0
Behavior4/5

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 that the tool is a scraper, prices are indicative and scraped at quote time, and it can take up to 120s with a specific timeout behavior (returns empty list with a note). These are important behavioral traits beyond what typical search tools might disclose. However, it does not mention potential side effects like external service dependencies or rate limits, so a 4 is warranted.

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 three sentences, front-loaded with the core purpose, followed by two concise caveats (price indicativeness, timeout). Every sentence adds valuable information without excess. It is appropriately sized and structured for quick comprehension by an agent.

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

Completeness3/5

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

The tool has 7 parameters, no output schema, and no annotations. The description covers the purpose, data source, and key behavioral traits (timeout, price indicativeness). However, it does not explain the return value structure or what data the agent can expect in a successful response, which is important given the lack of an output schema. The description is adequate for basic usage but leaves gaps for an agent deciding how to use the returned data.

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 57%, with 4 of 7 parameters having descriptions (checkIn, checkOut, destination, budgetPerNight). The tool description does not add specific meaning for the remaining parameters (adults, children, maxResults), which are self-explanatory by name but lack clarification on limits or behavior. The description only references 'destination and date range' in prose, which is already in the schema. Since the description does not compensate for the low schema coverage, it falls below the baseline 3.

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 tool's purpose: 'Search vacation stays (hotels/apartments) for a destination and date range via Bright Data's Booking.com listings scraper.' It uses a specific verb (search), identifies the resource (vacation stays), and distinguishes it from siblings like search_activities and search_dining by specifying the domain (stays) and data source (Booking.com scraper).

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

Usage Guidelines4/5

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

The description provides clear context on when to use the tool: searching accommodation for a destination and date range. It implicitly distinguishes from search_activities and search_dining by focusing on stays. It also notes limitations like price indicativeness and timeout behavior, which help the agent decide if this tool is appropriate. However, it does not explicitly mention alternatives or exclusions, so a 4 is appropriate rather than a 5.

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

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: search tools cover different resource types (stays, activities, dining), availability is specific to activities, enrich_place provides details for any place, and the two build tools produce different outputs (a text proposal vs. an interactive HTML page). No two tools overlap in function.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (build_proposal, search_stays, get_activity_availability, enrich_place). The verbs are specific and the nouns clearly indicate the target resource or artifact, making the naming predictable and intuitive.

Tool Count5/5

Seven tools is well-scoped for a travel planning and quoting server. Each tool covers a necessary step in the workflow (searching, availability, enrichment, and output generation) without redundancy or bloat.

Completeness4/5

The surface covers the core trip-planning lifecycle: search stays, activities, dining; check activity availability; enrich places; and generate both a proposal and an options page. Minor gaps exist, such as no dedicated transfer search (transfers are mentioned in build_options_page but not searchable) and no explicit quote generation tool, though these are partially handled within the build tools.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/ari-systemics/xcape'

If you have feedback or need assistance with the MCP directory API, please join our Discord server