{
  "markdown": "# aitrips MCP Server\n\n[aitrips.io](https://www.aitrips.io/?utm_source=github&utm_medium=mcp-directory) is a\nmap-first trip planner. Every stop has coordinates, every leg between stops has a real\nroute, and the plan is one shared thing rather than a document that goes stale.\n\nThis MCP server gives Claude, ChatGPT, Gemini or any MCP-compatible assistant 37 tools\nagainst that plan: create a trip, fill in the days, add transport across 11 modes and have\nthe route drawn between both ends, then review the whole thing for what's missing.\nEverything the assistant writes appears in the browser immediately, and everything you do\nin the browser is visible to the assistant.\n\nThere is nothing to install. The server is hosted at\n`https://www.aitrips.io/api/ai/mcp` and speaks Streamable HTTP.\n\n## Setup\n\n1. Sign up at [aitrips.io](https://www.aitrips.io/?utm_source=github&utm_medium=mcp-directory)\n2. Go to **Settings** to generate your API key\n3. Add the configuration below to your MCP client\n\nClients that support OAuth need no key at all. The server implements OAuth 2.1 with PKCE\nand dynamic client registration, so it registers itself and asks you to sign in.\n\n### Claude Desktop\n\nAdd to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):\n\n```json\n{\n  \"mcpServers\": {\n    \"aitrips\": {\n      \"url\": \"https://www.aitrips.io/api/ai/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer YOUR_API_KEY\"\n      }\n    }\n  }\n}\n```\n\n### Claude Code\n\n```sh\nclaude mcp add aitrips --transport http https://www.aitrips.io/api/ai/mcp \\\n  -h \"Authorization: Bearer YOUR_API_KEY\"\n```\n\n### Other MCP clients\n\nUse the Streamable HTTP endpoint `https://www.aitrips.io/api/ai/mcp` with an\n`Authorization: Bearer YOUR_API_KEY` header. Full setup notes, including the OAuth flow,\nare at [aitrips.io/docs](https://www.aitrips.io/docs?utm_source=github&utm_medium=mcp-directory).\n\n## Try it with\n\n```\nplan me three days in kyoto and put the walking routes on the map\nadd the 9am train from paddington to oxford on the 14th\nwhat's missing from my tokyo trip?\n```\n\nThe second one is the one worth trying first. Both ends get geocoded and a real route is\ndrawn between them, rather than a straight line across the map.\n\n## Tools\n\n37 tools. A further 12 admin-only tools exist for platform metrics and are registered only\nfor an admin role, so they never appear in your `tools/list`.\n\n### Trips\n\n| Tool          | Description                                                          |\n| ------------- | -------------------------------------------------------------------- |\n| `trip_create` | Create a trip with destination, dates, budget and timezone           |\n| `trip_get`    | Get full trip details including items, locations and collaborators   |\n| `trip_list`   | List your trips, with an optional status filter                      |\n| `trip_update` | Update a trip's name, dates, budget or status                        |\n| `trip_delete` | Delete a trip and everything attached to it                          |\n| `trip_clone`  | Copy a trip, shifting every date relative to a new start date        |\n\n### Itinerary items\n\n| Tool                         | Description                                                                  |\n| ---------------------------- | ---------------------------------------------------------------------------- |\n| `trip_item_add`              | Add an activity, accommodation, flight or meal with time, place and cost     |\n| `trip_item_list`             | List items, filtered by type, status or date range                           |\n| `trip_item_update`           | Update an item's details, status or booking info                             |\n| `trip_item_delete`           | Remove an item from a trip                                                   |\n| `trip_transport_add`         | Add a leg across 11 modes; both ends are geocoded and the route is drawn     |\n| `trip_item_repair_transport` | Recover a missing origin by parsing the item name and geocoding it           |\n\n### Trip review\n\n| Tool          | Description                                                                                                            |\n| ------------- | ---------------------------------------------------------------------------------------------------------------------- |\n| `trip_review` | Read the whole trip back and report gaps: missing transport, empty days, stale routes, stops with no coordinates, unbooked items close to departure |\n\n### Locations\n\n| Tool                   | Description                                        |\n| ---------------------- | -------------------------------------------------- |\n| `trip_location_add`    | Save a place with coordinates and a type           |\n| `trip_location_list`   | List saved places, filtered by type, city or country |\n| `trip_location_nearby` | Find saved places within a radius of a point       |\n| `trip_location_delete` | Delete a saved place                               |\n\n### Tasks and reminders\n\n| Tool                 | Description                          |\n| -------------------- | ------------------------------------ |\n| `trip_task_create`   | Create a task with priority and due date |\n| `trip_task_list`     | List tasks, filtered by status       |\n| `trip_task_update`   | Update a task's details              |\n| `trip_task_complete` | Mark a task done                     |\n| `trip_task_delete`   | Delete a task                        |\n\n### Notes\n\n| Tool               | Description                                        |\n| ------------------ | -------------------------------------------------- |\n| `trip_note_create` | Write a markdown note, optionally pinned to a date |\n| `trip_note_list`   | List notes, with an optional date filter           |\n| `trip_note_update` | Edit a note                                        |\n| `trip_note_delete` | Delete a note                                      |\n\n### Sharing and collaboration\n\n| Tool                        | Description                                            |\n| --------------------------- | ------------------------------------------------------ |\n| `trip_share_create`         | Create a share link at Viewer or Editor level          |\n| `trip_share_list`           | List a trip's share links                              |\n| `trip_share_revoke`         | Revoke a share link                                    |\n| `trip_collaborators_list`   | List who has access to a trip and at what level        |\n| `trip_collaborators_remove` | Remove someone's access                                |\n\n### Discussion\n\n| Tool                     | Description                        |\n| ------------------------ | ---------------------------------- |\n| `trip_item_comment_add`  | Comment on an item, with @mentions |\n| `trip_item_comment_list` | Read an item's comment thread      |\n| `trip_item_vote`         | Vote an idea up or down            |\n\n### History\n\n| Tool                 | Description                                       |\n| -------------------- | ------------------------------------------------- |\n| `trip_activity_list` | Read the activity log: who changed what, and when |\n\n### Search\n\n| Tool     | Description                                 |\n| -------- | ------------------------------------------- |\n| `search` | Search across trips, items and saved places |\n| `fetch`  | Read the full record behind a search result |\n\n`search` and `fetch` carry those exact names because ChatGPT's Deep Research mode requires\nthem.\n\n## UI resources\n\nFour MCP Apps resources under `ui://aitrips/*`: trip list, trip detail, item list and map\nview. Clients that render them get an interactive view; clients that don't get the text\nresponse and lose nothing.\n\n## Privacy\n\nYour assistant calls this server; the server never sees your conversation with it. What\narrives is the tool call and its arguments, and what's stored is the trip data you'd see in\nthe app. API keys are stored as a SHA-256 hash and can be revoked at any time from\nSettings. Full detail in the\n[privacy policy](https://www.aitrips.io/privacy?utm_source=github&utm_medium=mcp-directory),\nsection 4.\n\n## Links\n\n- [Website](https://www.aitrips.io/?utm_source=github&utm_medium=mcp-directory)\n- [Documentation](https://www.aitrips.io/docs?utm_source=github&utm_medium=mcp-directory)\n- [Support](mailto:support@aitrips.io)\n- [Official MCP Registry entry](https://registry.modelcontextprotocol.io/v0/servers?search=aitrips)\n\n## Licence\n\nMIT. See [LICENSE](./LICENSE).\n",
  "bytes": 8556,
  "sha": "1ca28f57c8630d0f2ffe36ec2a5f1db1cddb3842dddcf3b45d6d2470c7f52cc3",
  "repo_slug": "astondg/aitrips-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_aitrips_trip_planner_95fbca96/readme"
}