Plan trips from your AI, with the ConMigo MCP
ConMigo runs a Model Context Protocol (MCP) server — so you can plan trips the ConMigo way from inside Claude, ChatGPT or any MCP-compatible client. No account needed.
What it can do
Ask your AI things like "split 10 nights across Tokyo, Kyoto and Osaka" or "find me a ConMigo guide for a multi-city Spain trip". It exposes three tools:
- split_trip_nights — proportionally splits total nights across cities (at least one night each), the ConMigo way.
- find_guide — searches ConMigo's free travel guides and returns the matching itineraries.
- plan_trip_outline — a paced, day-by-day outline for a destination that respects travel time and flags what to book ahead.
The endpoint
https://conmigo.uk/api/mcpAdd it to Claude Desktop
In Settings → Connectors → Add custom connector (or claude_desktop_config.json), point a remote MCP server at the endpoint above. Using mcp-remote:
{
"mcpServers": {
"conmigo": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://conmigo.uk/api/mcp"]
}
}
}
Add it to ChatGPT
In a Custom GPT or the Developer settings, add a remote MCP server with the URL https://conmigo.uk/api/mcp. It needs no authentication.
Any other MCP client
The server speaks JSON-RPC 2.0 over HTTP POST (MCP "Streamable HTTP"). Point your client's remote-MCP configuration at https://conmigo.uk/api/mcp and the three tools appear automatically.