← Registry

General Tools

dreamfare.app

Manage travel plans by creating, editing, and organizing trips with stops, days, and sharing.

1 endpoint38 known toolsFirst detected September 3, 2026Last detected September 3, 2026

ENDPOINT 1

https://api.dreamfare.app/mcp

No auth detected

MCP server metadata

Name
dreamfare
Version
1.0.0
Capabilities
tools.listChangedresources.listChanged

Known tools 38

create_trip

Save a travel plan as a Dreamfare trip the traveler can open, edit with their crew, and book.

Potential side effects
add_stops

Add stops (places, activities, meals, stays, transport) to an existing Dreamfare trip.

Inferred read-only
add_saved_places_to_trip

Turn the traveler's library into itinerary stops WITH their pins, photos, tips and partner links intact (re-adding by name via add_stops would lose those).

Inferred read-only
edit_trip

Edit anything on a trip in one batched call: trip details and notes (update_trip), stops (update_stop / remove_stop / move_stop, by stopId from get_trip), days (add_day / update_day / remove_day, by 0-based dayIndex), and the planning stage (finalize locks the trip for sharing and booking; reopen unlocks it).

Potential side effects
delete_trip

Delete a trip the traveler owns (also unpublishes it from Explore).

Potential side effects
get_trip

Read one Dreamfare trip: days, stops (with stopIds for edit_trip), the packing list, and per-stop booking links.

Inferred read-only
list_trips

List the traveler's Dreamfare trips (own and shared), newest first — a lookup for trip ids.

Inferred read-only
manage_packing

Add, check off, uncheck, or remove packing-list items on a trip.

Potential side effects
mark_stop_booked

Record that the traveler completed a booking for a stop (on the partner site or elsewhere).

Inferred read-only
refresh_stay_prices

Re-quote every upcoming partner-priced stay on the trip against live rates and report what moved (previous → current).

Inferred read-only
travel_extras

Tracked partner links for the trip's destination country: a travel eSIM (data the moment they land), rental cars, airport pickup and private transfers.

Inferred read-only
plan_trip

Build a complete day-by-day trip in one call using Dreamfare's own planner: real venues (with opening hours), a stay, activities and flights from partner inventory, the traveler's saved places woven in, pins, photos and booking links — all server-side, in about 10 seconds.

Inferred read-only
search_stays

Live hotel/stay inventory with real prices for a destination and date window.

Inferred read-only
search_flights

Flight offers between two airports (IATA codes).

Inferred read-only
search_activities

Bookable activities, tours and experiences for a destination.

Inferred read-only
search_places

Real venues for a destination — restaurants, activities, hotels, landmarks, shopping — with ratings, pins, and photos (partner inventory + cached Google Places, the app's own Explore surface).

Inferred read-only
add_option_to_trip

Attach one search result to a trip as a stop: kind 'stay' / 'flight' / 'activity' takes the option/offer object from the matching search tool; kind 'place' takes a search_places result's itemDraft.

Inferred read-only
import_video

Extract the real places from a TikTok, Instagram, YouTube, Facebook, or Reddit travel link — watched, transcribed, and geocoded.

Inferred read-only
import_text

Extract the real places from text the traveler pastes — notes, a friend's list, a blog post, an itinerary email — and save them (with any tips) to their library, exactly like a video import.

Potential side effects
get_import

Status and results of a video/post import: the extracted places with their areas, notes, per-place tips, and day assignments.

Potential side effects
list_travel_tips

The traveler's travel-tips notebook: their own notes plus per-place advice mined by video imports ('go before 8am', 'cash only').

Inferred read-only
manage_travel_tips

Add or remove entries in the traveler's travel-tips notebook.

Potential side effects
get_profile

The traveler's Dreamfare account snapshot: profile, membership tier, AI credits, and wallet balance (commission earned through tracked bookings).

Inferred read-only
update_profile

Update profile fields: display name, bio, home currency, nationality, and the visited-countries list (a FULL replacement — read get_profile first when adding to it).

Potential side effects
save_place

Save a place to the traveler's library without putting it on a trip yet — 'remember this for my next Lisbon trip'.

Inferred read-only
list_saved_places

The traveler's saved-places library: folders and the places in them (optionally one folder, or 'unsorted').

Inferred read-only
manage_saved_places

Housekeeping for the traveler's library in one call: delete places, move places into a folder (or out to unsorted), rename a place, create/rename/delete folders (deleting a folder keeps its places as unsorted).

Potential side effects
list_crew

The trip's crew: owner, collaborators with their roles, and (for the owner) the open invite links.

Inferred read-only
invite_to_trip

Create an invite link for a trip, optionally emailed to one person (they must sign in with that email to accept).

Potential side effects
manage_crew

Owner-only crew housekeeping in one call: change a member's role, remove a member, or revoke an open invite.

Potential side effects
read_trip_chat

The latest messages in a trip's crew chat (newest last), including polls.

Inferred read-only
post_trip_chat

Say something to the crew in the trip's chat.

Inferred read-only
vote_stop

Thumbs up (1) or down (-1) on a stop the crew is deciding about, or 0 to take a vote back.

Inferred read-only
share_trip

Publish a finalized trip to a public link (dreamfare.

Potential side effects
explore_trips

Trips other travelers published on Dreamfare, by destination and/or free text — real itineraries with stops, photos and creator credit.

Inferred read-only
copy_trip

Make the traveler their own editable copy of a trip: a published one (publicationId from explore_trips — keeps the creator's attribution and re-bases flights on the traveler's home airport) or one of their own trips (tripId — dates, stops and the shared packing list come along).

Inferred read-only
add_receipt

Paste a booking confirmation (hotel, flight, tour, train — the email text or its key lines) and Dreamfare files it on the trip: provider, confirmation code, dates and amount are parsed, and when it clearly matches a stop that stop is marked booked.

Potential side effects
list_receipts

Every receipt filed on a trip with its parsed facts and the stop it's linked to.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.dreamfare]
url = "https://api.dreamfare.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "dreamfare": {
      "type": "http",
      "url": "https://api.dreamfare.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: dreamfare
Remote MCP URL: https://api.dreamfare.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "dreamfare": {
      "url": "https://api.dreamfare.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "dreamfare": {
      "type": "http",
      "url": "https://api.dreamfare.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "dreamfare",
  "transport": "streamable-http",
  "url": "https://api.dreamfare.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.