OctoTrip/rental-cars

🚆 Travel & Transportation
0 Views
0 Installs

🐍 ☁️ - Free rental car search with real-time pricing from multiple providers worldwide. No API key required. Hosted at mcp.octotrip.app.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "octotrip-rental-cars": {
      "command": "npx",
      "args": [
        "-y",
        "octotrip-rental-cars"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

OctoTrip Rental Cars MCP Server

TensorBlock Glama Score Smithery Calls Glimind reliability Uptime

Free, no-login MCP server for discovering and comparing rental cars with real-time pricing from multiple providers worldwide.

MCP Streamable HTTP Endpoint:

https://mcp.octotrip.app/rental-cars/mcp

Demo

Related

Affiliate Disclosure

OctoTrip is free to use. Booking links contain affiliate attribution -- OctoTrip may earn a commission at no extra cost to you. Search results are ranked by price within each car category, not by affiliate payout.

Quick Start

Add to your MCP client configuration:

{
  "mcpServers": {
    "octotrip-rental-cars": {
      "url": "https://mcp.octotrip.app/rental-cars/mcp"
    }
  }
}

No API key or login required.

Use with...

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "octotrip-rental-cars": {
      "url": "https://mcp.octotrip.app/rental-cars/mcp"
    }
  }
}
Cursor / Windsurf

Add to your MCP settings:

{
  "mcpServers": {
    "octotrip-rental-cars": {
      "url": "https://mcp.octotrip.app/rental-cars/mcp"
    }
  }
}
Cline

Add to your Cline MCP settings:

{
  "mcpServers": {
    "octotrip-rental-cars": {
      "url": "https://mcp.octotrip.app/rental-cars/mcp"
    }
  }
}
LobeHub

MCP Badge

OpenClaw
openclaw plugins install clawhub:@xltnapps/octotrip-rental-cars
Smithery

Install via Smithery:

npx -y @smithery/cli install xltnapps/octotrip-rental-cars --client claude
Hermes Agent
hermes mcp add octotrip-rental-cars --url https://mcp.octotrip.app/rental-cars/mcp
hermes mcp test octotrip-rental-cars

Or add to ~/.hermes/config.yaml:

mcp_servers:
  octotrip_rental_cars:
    url: "https://mcp.octotrip.app/rental-cars/mcp"
Stdio-only clients

For MCP clients that only support stdio transport:

npx mcp-remote https://mcp.octotrip.app/rental-cars/mcp
curl / Protocol Example

A complete MCP session using curl (initialize, list tools, call search):

# 1. Initialize
curl -s -X POST https://mcp.octotrip.app/rental-cars/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0", "id": 1, "method": "initialize",
    "params": {
      "protocolVersion": "2025-03-26",
      "capabilities": {},
      "clientInfo": {"name": "example", "version": "1.0"}
    }
  }'

# 2. List tools
curl -s -X POST https://mcp.octotrip.app/rental-cars/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc": "2.0", "id": 2, "method": "tools/list"}'

# 3. Search
curl -s -X POST https://mcp.octotrip.app/rental-cars/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{
    "jsonrpc": "2.0", "id": 3, "method": "tools/call",
    "params": {
      "name": "search",
      "arguments": {
        "location": "Munich Airport",
        "pickup_date": "2026-08-01",
        "dropoff_date": "2026-08-07"
      }
    }
  }'

Transport: stateless streamable HTTP. Responses use text/event-stream (SSE). No session persistence or resumability. Rate limit: 1 request/second with burst capacity of 5.

Tool: search

Searches live rental-car offers for a pickup location and rental period. Returns available cars from multiple vendors grouped by category (economy, compact, SUV, etc.), showing the cheapest options in each. The tool queries external provider APIs in real time and may include affiliate booking links. It does not book cars, modify reservations, charge users, or store user data.

Parameters

ParameterTypeRequiredDefaultDescription
locationstringyes--Pickup location: city, airport, station, address, or landmark
pickup_datestringyes--Pickup date (YYYY-MM-DD, DD.MM.YYYY, or natural-language)
dropoff_datestringyes--Dropoff date, must be after pickup date
dropoff_locationstringnosame as pickupDifferent dropoff location for one-way rentals
pickup_timestringno"12:00"Pickup time in 24-hour HH:MM format
dropoff_timestringno"12:00"Dropoff time in 24-hour HH:MM format
currencystringno"EUR"ISO 4217 currency code (EUR, USD, GBP, etc.)
languagestringno"en"Response language code (en, de, etc.)
ageintegerno30Driver age, minimum 18 (younger drivers may incur surcharges)

Response Format

Results are grouped by SIPP car category with the cheapest 2 options per group:

{
  "results": [
    {
      "name": "Volkswagen Golf",
      "vendor": "Europcar",
      "sipp": "CDMR",
      "category": "Compact",
      "price": 181.03,
      "price_per_day": 45.26,
      "pay_now": 181.03,
      "pay_later": 0,
      "currency": "EUR",
      "transmission": "manual",
      "passengers": 5,
      "bags": 1,
      "doors": 4,
      "air_con": true,
      "fuel_policy": "Full to Full",
      "mileage": "Unlimited",
      "free_cancellation": true,
      "free_amendment": true,
      "deposit": 800,
      "excess": 950,
      "included_protections": ["Collision Damage Waiver", "Theft Protection"],
      "image_url": "https://...",
      "booking_url": "https://...",
      "link_type": "affiliate",
      "affiliate_disclosure": "This link contains affiliate attribution. OctoTrip may earn a commission at no extra cost to you."
    }
  ],
  "total": 23,
  "total_available": 379,
  "rental_days": 4,
  "pickup_location_resolved": "Munich International Airport",
  "dropoff_location_resolved": "Munich International Airport",
  "query": { ... }
}

Error Responses

The server returns structured errors with suggestions:

  • location_not_found -- location could not be resolved. Try a more specific name or airport.
  • invalid_date -- date format not recognized. Use YYYY-MM-DD, DD.MM.YYYY, or similar.
  • no_results -- no cars available for the given criteria. Try different dates or a nearby location.

Example Prompts

  • Find me a cheap rental car at Amsterdam Schiphol for next weekend
  • Compare automatic SUVs available in Munich Airport for July 10-15
  • I need a car in Barcelona from August 1-14, budget around 30 EUR/day
  • One-way rental from Berlin to Hamburg, picking up Friday, returning Monday
  • What's the cheapest economy car at London Heathrow for a week in September?

Privacy

This server does not log IP addresses, search queries, or any user-identifiable data. See PRIVACY.md for full details including sample log entries.

Security

To report a vulnerability, see SECURITY.md.

License

MIT

Related MCP Servers

alcylu/nightlife-mcp

📇 ☁️ - MCP server for Tokyo nightlife event discovery, venue search, performer info, AI recommendations, and VIP table booking.

🚆 Travel & Transportation0 views
amirdaraee/luxembourg-mcp

🎖️ 🐍 ☁️ 🏠 - Keyless access to official Luxembourg public data: laws, statistics, live parking and traffic, weather alerts, environment, parliament, geodata, GTFS stops, and the national open-data catalogue. 21 read-only tools, zero dependencies; hosted endpoint at mcp.luxembourg-mcp.com or local Python server. No API keys.

🚆 Travel & Transportation0 views
Autonomad1/autonomad-travel

📇 ☁️ - AI travel agent over MCP — live flights, hotels, activities, and events worldwide, then completes the booking on autonomad.ai (free signup at checkout, first month of Premium included).

🚆 Travel & Transportation0 views
campertunity/mcp-server

🎖️ 📇 🏠 - Search campgrounds around the world on campertunity, check availability, and provide booking links

🚆 Travel & Transportation0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.