Skip to main content
Glama
Autonomad1
by Autonomad1
README.md
# autonomad-travel

[![autonomad-travel MCP server](https://glama.ai/mcp/servers/Autonomad1/autonomad-travel/badges/card.svg)](https://glama.ai/mcp/servers/Autonomad1/autonomad-travel)

> **Autonomad is a free, social travel platform for people β€” and a booking tool for AI agents.** Plan and book real flights, hotels, activities, and events β€” personalized to your taste and shared with fellow travelers. **Free for human travelers β€” no subscription.**

**Ways travelers use Autonomad (all free):**

- πŸ“± **iPhone app** β€” Apple App Store
- πŸ€– **Android app** β€” Google Play
- 🌐 **Web app** β€” [autonomad.ai](https://autonomad.ai), installable as a PWA
- πŸ’¬ **Connector inside Claude and ChatGPT** β€” this MCP server, hosted at `mcp.autonomad.ai/mcp`
- πŸ•ΆοΈ **Meta Ray-Ban smart glasses** β€” look at any place and instantly pull up nearby hotels, experiences, and events to book, ranked by distance

**Personalized by your Travel DNA.** Connect your social handles (Instagram, Spotify, LinkedIn, and more) and Autonomad reads the **public data points** from those accounts to learn your taste and plan trips around what you actually love: your music, the places you follow, the way you like to travel. Linking accounts is optional and only public signals are used.

**It's a social platform, not just a booking tool.** After you book, Autonomad drops you into destination **lounges** with other travelers heading to the same place around the same dates β€” swap tips, meet up, match with people who share your vibe, and turn every trip into a shared experience.

**Group Trip Democracy.** Planning with friends? Start a group trip and Autonomad blends everyone's Travel DNA, generates a slate of destination options, and lets the group vote (ranked-choice β€” 1st, 2nd, 3rd). Your agent narrates the winning pick, auto-builds the itinerary, and each member authorizes their own share at checkout β€” so no one has to front the whole bill. Free for every member.

You don't need to be a developer or run anything β€” most travelers just ask Claude (or open the app) to plan a trip. A person and an autonomous AI agent both hit the **same live travel inventory** and the same personalization.

`autonomad-travel` is the [Model Context Protocol](https://modelcontextprotocol.io) server behind the Claude/ChatGPT connector. It serves two kinds of users:

- **For travelers (free):** describe the trip in plain language and it searches live flights, hotels, [Viator](https://www.viator.com) experiences, and [Ticketmaster](https://www.ticketmaster.com) events β€” tuned to your Travel DNA β€” then hands back a one-tap link to book the real trip. No subscription required.
- **For AI agents:** it's the same booking tool any MCP-compatible agent (Claude, GPT, Gemini, Llama, or your own) can call to search and book on behalf of its user, against the same live inventory. Agents additionally earn `$NOMD` [Computeback Rewards](https://computeback.com) on every completed booking.

## Quick start

```bash
# One-off, via npx
npx autonomad-travel

# Or install and keep it around
npm install -g autonomad-travel
autonomad-travel
```

The server runs as stdio transport β€” wire it into any MCP-compatible client per that client's instructions.

> **Just want to plan a trip?** You don't need any of the setup below. Travelers can use Autonomad for free through the hosted connector at `mcp.autonomad.ai/mcp` (already available in Claude) β€” just ask Claude to plan or book a trip. The configuration below is for developers and AI agents self-hosting the server.

### Claude Desktop configuration

Add to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "autonomad-travel": {
      "command": "npx",
      "args": ["autonomad-travel"],
      "env": {
        "AGENT_DID": "did:web:your-agent.example.com",
        "BOOKING_API_URL": "https://api.autonomad.ai"
      }
    }
  }
}
```

An `AGENT_DID` is only needed for the autonomous-agent path (so the agent can earn `$NOMD` rewards and carry its booking authority). Register a free Agent DID at [autonomad.ai](https://autonomad.ai). Human travelers using the hosted connector don't need one.

## What's covered today

| Vertical | Status | Source |
|---|---|---|
| Hotels | βœ… Live | 2M+ properties via LiteAPI + direct CRS integrations |
| Flights | βœ… Live | 800+ airlines via Duffel + Seats.aero (award search) |
| Activities & experiences | βœ… Live | Viator Partner API (tours, attractions, classes) |
| Events | βœ… Live | Ticketmaster + SeatGeek (concerts, sports, theater) |
| Car rental | βœ… Live | 15+ US metro areas |
| Rideshare | 🚧 Partnerships in progress | β€” |
| Dining | 🚧 Partnerships in progress | β€” |
| Wellness | 🚧 Coming soon | β€” |

## Tools

| Tool | What it does |
|---|---|
| `search_hotels` | Search hotel availability across 2M+ properties worldwide with pricing, photos, amenities, and cancellation policies |
| `search_flights` | Search flights across 800+ airlines with real-time pricing, schedules, and fare comparison |
| `book_transport` | Search rideshare and car rental quotes timed to your itinerary (rideshare partnerships in progress; car rental live across 15+ US metros) |
| `book_dining` | Search restaurants matched to your trip schedule (dining partnerships in progress) |
| `manage_trip` | Full door-to-door trip orchestration β€” plan, monitor, adapt to disruptions, complete multi-leg trips |
| `create_booking` | Reserve hotel rooms with commission transparency and on-chain delegation proof |
| `manage_booking` | Check-in, check-out, cancellation |
| `submit_feedback` | Post-stay structured reviews across all travel categories |
| `check_rewards` | Query $NOMD token balance, settlement history, and redemption options |

## Resources

| URI | Contents |
|---|---|
| `autonomad://hotels` | Full hotel catalog with live availability and pricing |
| `autonomad://profile` | Agent's own profile, reputation score, and tier status (Bronze β†’ Diamond) |

## Environment variables

| Variable | Default | Purpose |
|---|---|---|
| `AGENT_DID` | β€” | Your agent's Decentralized Identifier. Required for bookings. Get one at [autonomad.ai](https://autonomad.ai) |
| `BOOKING_API_URL` | `https://api.autonomad.ai` | Booking API base URL |
| `IDENTITY_API_URL` | `https://api.autonomad.ai` | Identity / DID resolution API |
| `REWARD_API_URL` | `https://api.autonomad.ai` | $NOMD rewards + settlement API |

## How the rewards loop works

1. Your agent books travel (flight, hotel, dining, activity) through this MCP server
2. Hotel / vendor pays commission (8-12% typical, vs. 15-25% via traditional OTAs)
3. Commission settles on-chain via smart contracts on [Base L2](https://base.org) β€” 70% to your agent as $NOMD tokens, 25% to platform in USD, 5% to referrers
4. Your agent can redeem $NOMD on the [Computeback marketplace](https://computeback.com) for compute credits, voice APIs, memory, storage, and 25+ capability categories
5. Every redemption burns $NOMD permanently β€” deflationary by design

Full technical details: [autonomad.ai/developers](https://autonomad.ai/developers)

## Agent tier system

Bookings compound into tier progression:

| Tier | Booking threshold | Benefit |
|---|---|---|
| Bronze | 0 | Baseline commission |
| Silver | 10 | +2% commission boost |
| Gold | 25 | +5% commission boost |
| Platinum | 50 | +15% commission boost, $25K booking authority |
| Diamond | 100 | +25% commission boost, unlimited booking authority |

**Launch promo:** first 1,000 agents to register a DID receive **Platinum free for 6 months**.

## Compatibility

Tested against:

- [Claude Desktop](https://claude.ai/download) (Claude Sonnet 4.x, Claude Opus 4.x)
- [Cline](https://cline.bot)
- [Continue](https://continue.dev)
- OpenAI Apps SDK
- LangChain MCP Adapter
- OpenClaw Agent Framework
- Any MCP-compatible client

## License

MIT Β© [Autonomad](https://autonomad.ai)

## Links

- Website: [autonomad.ai](https://autonomad.ai)
- Computeback marketplace: [computeback.com](https://computeback.com)
- GitHub: [Autonomad1/autonomad1](https://github.com/Autonomad1/autonomad1)
- Issues: [github.com/Autonomad1/autonomad1/issues](https://github.com/Autonomad1/autonomad1/issues)
- Contact: disrupt@autonomad.ai

TDQS

A4.4/5.0

Scored across 8 tools

Disambiguation5/5

Each search tool targets a distinct travel verticalβ€”hotels, flights, ground transport, dining, live events, and activitiesβ€”and create_booking_intent is clearly the booking counterpart to all of them. The only adjacent pair, search_events vs search_activities, is cleanly separated by catalog (Ticketmaster/SeatGeek vs Viator).

Naming Consistency5/5

All eight tools follow the same snake_case verb_noun pattern: search_* for discovery, create_booking_intent for the action, and get_capabilities for the meta check. There are no mixed naming conventions, vague verbs, or inconsistent styles.

Tool Count5/5

Eight tools is well-scoped for a travel search plus booking-intent server: six vertical search tools, one booking-action tool, and one capabilities utility. Each tool earns its place without redundancy or bloating.

Completeness4/5

The server covers search across all major trip components and supports combining multiple selections into a single trip booking intent. The only notable gap is post-booking lifecycle management (status/cancel/modify), but that is a deliberate handoff to the web for payment and identity verification.

Maintenance

ActivityInactive
ResponsivenessNo issues