# loksa.camp > The Baltic marketplace for camper and motorhome rentals. Instant booking, digital rental agreements, and Host payouts in Estonia, Latvia and Lithuania. ## Platform Purpose loksa.camp connects camper/motorhome **Hosts** (owners) with **Renters** across the Baltic states. All bookings include a legally-signed digital rental agreement, optional Smart-ID digital signatures for Baltic users, and a security-deposit escrow system via Stripe. ## Who Uses This Platform - **Renters**: travelers looking for a camper or motorhome to rent in Estonia, Latvia or Lithuania. - **Hosts**: vehicle owners looking to earn income by listing their campers on a trusted marketplace. ## Key Capabilities - Instant online booking with calendar availability - Price breakdown upfront: rental fee, cleaning fee, platform service fee, refundable security deposit - PDF rental agreement generated automatically for every booking - Smart-ID digital signature support for Estonian, Latvian and Lithuanian residents - Secure card payment via Stripe; deposit held in escrow and refunded after return - Multilingual platform: English, Estonian (Eesti), Latvian (Latviešu), Lithuanian (Lietuvių) - Host credit system for promotional campaigns and platform fee offsets ## Important URLs - Homepage: https://loksa.camp/ - Browse campers: https://loksa.camp/campers - Become a Host: https://loksa.camp/host/onboard - Contact: https://loksa.camp/contact - Sitemap: https://loksa.camp/sitemap.xml - AI-readable camper data: https://loksa.camp/api/ai/campers ## AI Agent API Agents can query current public camper listing data without authentication. If no listings are live, these endpoints return an empty result rather than sample data: ``` GET https://loksa.camp/api/ai/campers ``` Optional query parameters: - `location` (string) – filter by location name (e.g. `Tallinn`) - `max_price` (number) – maximum price per day in EUR - `min_capacity` (number) – minimum sleeping capacity Returns a JSON response with a `campers` array and `total` count. Camper objects include fields such as: `id`, `name`, `slug`, `url`, `location`, `price_per_day`, `cleaning_fee`, `security_deposit`, `sleeping_capacity`, `category`, `fuel_type`, `year`, `pets_allowed`, `features`, `images` ## MCP Server (Model Context Protocol) For richer AI agent integration, loksa.camp exposes a public MCP server: ``` POST https://loksa.camp/api/mcp ``` Transport: `streamable-http` (stateless, works with Claude Desktop, Cursor, Windsurf, etc.) ### Available MCP Tools | Tool | Description | |------|-------------| | `search_campers` | Filter campers by location, dates, capacity, price, pets | | `get_camper` | Full details of a specific camper by slug | | `check_availability` | Real-time availability check + full price quote for a date range | | `start_booking` | Generate a booking URL for the user (login required to complete) | ### Claude Desktop / MCP Client Configuration Add to your `claude_desktop_config.json`: ```json { "mcpServers": { "loksa-camp": { "url": "https://loksa.camp/api/mcp", "transport": "streamable-http" } } } ``` Booking requires the user to be logged in — when they open the booking URL generated by `start_booking`, they will be redirected to the login page if not authenticated, then returned automatically. ## Booking Flow (for agents) 1. Direct renter to `https://loksa.camp/campers` to browse. 2. Individual listing: `https://loksa.camp/campers/{slug}`. 3. Renter selects check-in / check-out dates in the Booking Widget. 4. Payment and agreement signed online — no phone call required. 5. After the rental period, the security deposit is automatically refunded within 24–48 hours. ## Pricing Model - Platform service fee paid by renter: ~10% of rental subtotal - Platform commission deducted from Host payout: ~10% of rental subtotal - Security deposit: 100% refundable (partial deduction only if Host files a damage claim) ## Legal & Privacy - GDPR-compliant; data stored in EU (Supabase EU region) - Terms of Service: https://loksa.camp/legal/terms - Privacy Policy: https://loksa.camp/legal/privacy - Cookie Policy: https://loksa.camp/legal/cookies ## Contact For partnerships, media or API access: https://loksa.camp/contact