wanderlog-mcp
by shaikhspeare·★ 27·Score 46
MCP server for building and editing trip itineraries in Wanderlog through natural language conversation.
Overview
wanderlog-mcp is an MCP server that allows Claude or any MCP-compatible agent to view and build Wanderlog trip itineraries through conversation. Instead of manually clicking through the Wanderlog UI, users can simply ask the agent to create trips, add places, notes, hotels, and checklists. The server provides 13 tools including listing trips, creating new trips, adding places and notes, managing hotels and checklists, and organizing expenses. Authentication is handled through browser session cookies.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
选择此服务如果你已经是 Wanderlog 用户并希望通过自然语言对话而非手动点击界面来规划和管理旅行行程。
When NOT to choose this
如果你不使用 Wanderlog 平台,或者需要更广泛的旅行规划工具集成,这个服务器可能不适合你。
Tools this server exposes
12 tools extracted from the READMEwanderlog_list_tripsList trips in your Wanderlog account
wanderlog_get_tripView a full itinerary, or filter to a specific day
wanderlog_get_trip_urlGet a shareable wanderlog.com link to a trip
wanderlog_search_placesFind real-world places near a trip's destination
wanderlog_create_tripCreate a new trip with destination and date range
wanderlog_add_placeAdd a place to a specific day or general list
wanderlog_add_noteAdd notes like transit tips or booking info to your itinerary
wanderlog_add_hotelAdd a hotel booking with check-in/check-out dates
wanderlog_add_checklistAdd a pre-trip or per-day checklist
wanderlog_add_expenseLog a budget expense linked to a place
wanderlog_annotate_placeUpdate an existing place with a note, start/end time, or both
wanderlog_rename_dayRename a day's heading to be more descriptive
Comparable tools
Installation
Installation
- **Get your Wanderlog session cookie**
- Log in to [wanderlog.com](https://wanderlog.com) - Open DevTools (F12) - Go to Application/Storage tab → Cookies → find connect.sid and copy its value
- **Configure your MCP client**
**Claude Desktop**: Edit claude_desktop_config.json:
{
"mcpServers": {
"wanderlog": {
"command": "npx",
"args": ["wanderlog-mcp"],
"env": {
"WANDERLOG_COOKIE": "s%3A...your value here..."
}
}
}
}**Other clients**: See README for instructions on configuring Claude Code, Cursor, VS Code, OpenAI Codex, and Smithery.
FAQ
- How often do I need to refresh my cookie?
- The cookie lasts about a year but can expire sooner if you log out of wanderlog.com, change your password, or Wanderlog revokes the session. When tools start failing, recapture a fresh cookie from DevTools.
- Which MCP clients are supported?
- The server works with Claude Code, Claude Desktop, OpenAI Codex, Cursor, VS Code, and any stdio MCP host. It's designed to communicate via stdio MCP protocol.
Compare wanderlog-mcp with
Last updated · Auto-generated from public README + GitHub signals.