Delulu
Search more, hallucinate less - a suite of MCP servers and CLI tools to supercharge your LLM skillset
Ask AI about Delulu
Powered by Claude Β· Grounded in docs
I know everything about Delulu. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Delulu - A suite of MCP tools to supercharge your LLM skillset
[!TIP] More knowing. Less guessing.
Delulu will provide a suite of tools to help your LLM search and crawl the Web and API to give you high-quality information.
The first tool released is a travel agent that can search on:
- Google Flights
- Google Hotels
Motivation
[!TIP] One chat UI to rule them all
One MCP to find them
One query to bring them all
And by the LLM bind them
Screenshots

Features
- πͺ MCP Server: Works with stdio transport (Claude Desktop) and HTTP transport
- π» CLI Tools: Direct
flightsandhotelscommands - π¦ Rate Limiting: Let's be good citizens.
- πͺ Cookie Management: Let's be crafty citizens.
- π¦ Prebuilt Binaries: For those allergic to Docker
- π³ Container Ready: Docker, Podman and Docker-Compose support with prebuilt image
- π High Performance: Built with Rust, Axum, and Tokio
- βοΈ Lightweight: No browser, Selenium, or Playwright - direct queries via reverse-engineered Protobuf
Installation
π¦ Option 1: Prebuilt Binaries
- Quick Install - Platform-specific one-liners:
Windows (x86-64 i.e. AMD or Intel)
Invoke-WebRequest -Uri "https://github.com/mratsim/delulu/releases/latest/download/delulu-travel-mcp-windows-x86_64.zip" -OutFile "delulu.zip"; Expand-Archive -Path "delulu.zip" -DestinationPath "."; Remove-Item "delulu.zip"
Windows ARM64
Invoke-WebRequest -Uri "https://github.com/mratsim/delulu/releases/latest/download/delulu-travel-mcp-windows-arm64.zip" -OutFile "delulu.zip"; Expand-Archive -Path "delulu.zip" -DestinationPath "."; Remove-Item "delulu.zip"
Linux (x86-64 i.e. AMD or Intel)
curl -sL "https://github.com/mratsim/delulu/releases/latest/download/delulu-travel-mcp-linux-x86_64.tar.gz" | tar -xz
Linux (Arm64 like Raspberry Pi)
curl -sL "https://github.com/mratsim/delulu/releases/latest/download/delulu-travel-mcp-linux-arm64.tar.gz" | tar -xz
macOS Apple Silicon
curl -sL "https://github.com/mratsim/delulu/releases/latest/download/delulu-travel-mcp-macos-arm64.tar.gz" | tar -xz
-
Manual Download - Visit the GitHub Releases page and download the appropriate file for your platform and architecture, then extract the binary.
-
Run the MCP server:
# HTTP transport (for remote clients) delulu-travel-mcp http --host 0.0.0.0 --port 8080 # Or stdio transport (for Claude Desktop) delulu-travel-mcp stdio
π¦ Option 2: Cargo (Rust Users)
# Build from source
git clone https://github.com/mratsim/delulu
cd delulu
cargo build --release --features mcp
# Run the MCP server
./target/release/delulu-travel-mcp http --port 8080
π³ Option 3: Docker or Podman
# HTTP transport (for remote clients)
docker run -p 8080:8080 \
--env RUST_LOG=info \
ghcr.io/mratsim/delulu/travel-agent:latest \
http --host 0.0.0.0 --port 8080
# Stdio transport (for Claude Desktop) - requires interactive mode
docker run -i --rm ghcr.io/mratsim/delulu/travel-agent:latest stdio
π³ Option 4: Docker-compose
git clone https://github.com/mratsim/delulu
cd delulu
docker-compose up -d
The docker-compose uses HTTP transport. Access the MCP server at http://localhost:8080/mcp.
Usage
CLI Tools
Search for flights:
delulu-flights --from JFK --to LAX --date 2026-03-15 --seat economy --adults 1
Search for hotels:
delulu-hotels --location "San Francisco, CA" --date 2026-03-15 --adults 2
MCP Server
HTTP Transport
Point your MCP client to http://localhost:8080/mcp.
Available tools:
flights_search: Search flights prices on Google Flightshotels_search: Search hotel prices on Google Hotels
Stdio Transport (Claude Desktop)
Add to your Claude Desktop config:
{
"mcpServers": {
"delulu": {
"command": "delulu-travel-mcp",
"args": ["stdio"]
}
}
}
License
Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
See LICENSE or http://www.gnu.org/licenses/ for details.
