---
title: "Create Trip"
method: POST
path: "/v1/trips"
tags: ["mcp-server"]
---

# Create Trip

`POST /v1/trips`

Create a new draft trip with `num_days` blank days, ready for
add_place/add_day_note.

Mirrors the in-app create path: a Trip plus its primary conversation link
(the sole trip association — see docs/CHAT_TRIP_SPLIT.md), then an empty
plan. Returns the trip summary, including the new trip_id.

## Request body

- ApiMcpServerCreateTripRequest
  - `title` string, required
  - `num_days` integer

## Response `200`

Successful Response

- ApiMcpServerTripSummary
  - `id` string, uuid, required
  - `title` string, nullable, required
  - `slug` string, nullable, required
  - `visibility` string, required
  - `is_published` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stardrift/fastapi/revisions/00746572572a/schema)
