Gullivr Travel App Integrates with Claude via Remote MCP Server

A developer has created Gullivr, a travel planning application that integrates with Claude through a remote Model Context Protocol (MCP) server. This setup allows Claude to directly create and manage trips within the app, addressing the friction of manually copying travel plans between Claude and travel applications.
What Claude Can Do Through the MCP Server
- Create and manage trips with day-by-day itineraries
- Add places with photos and coordinates pulled from Google Places
- Search and add accommodations with real pricing information
- Add flights from Gmail confirmations
- Reorder stops and move places between days
- Calculate route distances between stops
How the Integration Works
The app exposes a remote MCP server using Streamable HTTP transport. Users add it to claude-code as a remote server, requiring no local installation, Docker setup, or configuration files. Claude authenticates with the user's account, ensuring it only accesses their specific trips. All updates happen in real time while chatting with Claude.
The developer built the entire application using Claude Code and notes that Gullivr is free to use. The implementation demonstrates how remote MCP servers can enable direct interaction between AI assistants and external applications without complex local setups.
📖 Read the full source: r/ClaudeAI
👀 See Also

Academic Research Skills for Claude Code: A Human-in-the-Loop Pipeline for Paper Writing
Academic Research Skills (ARS) v3.7.0+ is a Claude Code plugin that automates reference hunting, citation formatting, data checking, and logical consistency review while keeping the human researcher in control. Install via /plugin marketplace add Imbad0202/academic-research-skills.

Claude IDE Bridge: WebSocket Tool for Real-Time IDE Access
claude-ide-bridge is a WebSocket bridge that connects Claude Code directly to IDE internal state, enabling live diagnostics, go-to-definition, find references, type hovering, file opening, breakpoint management, and debugger state streaming.

Eä: A SIMD Compiler for Python Written in Rust
A developer built Eä, a compiler for SIMD kernels in ~12k lines of Rust that generates shared libraries and Python wrappers from .ea files, achieving 6.6× speedups over NumPy without ctypes or build systems.

Auto-Fix System Uses Claude Code Headless to Detect and Fix Production Errors
A developer built an automated production error-fixing system using Claude Code CLI in headless mode. The system detects errors from logs, creates isolated git worktrees for each issue, prompts Claude to write fixes, and requires manual approval via Telegram before creating PRs.