Rohlik MCP Proxy
Enables interaction with the Rohlik grocery delivery service through MCP by proxying requests with automatic authentication header injection.
README
Rohlik MCP Proxy Server
A Docker-based proxy MCP (Model Context Protocol) server for the Rohlik MCP service that forwards requests to https://mcp.rohlik.cz/mcp while automatically injecting authentication headers from a base64url token in the URL path (or optional env fallback).
Features
- Transparent Proxying: Forwards MCP protocol messages between clients and the Rohlik MCP server
- Authentication Injection: Automatically injects
rhl-emailandrhl-passheaders from a base64url path token (env fallback optional) - SSE/Streaming Support: Streams GET responses for real-time MCP sessions
- Docker-based: Easy deployment with Docker and Docker Compose
- Health Monitoring: Built-in health check endpoint
- CORS Enabled: Allows browser-based and desktop MCP clients to connect
Prerequisites
- Docker and Docker Compose installed
- Rohlik account credentials (email and password)
Quick Start
1. Generate a base64url token
Create a base64url-encoded token for email:password:
python - <<'PY'
import base64
print(base64.urlsafe_b64encode(b"email@gmail.com:password").decode())
PY
2. Build and Run with Docker Compose
Note: docker-compose.yml expects an external network named cloudflare. Create it with
docker network create cloudflare or remove the networks section if you don't need it.
# Build and start the proxy server
docker-compose up -d
# View logs
docker-compose logs -f rohlik-mcp-proxy
# Stop the server
docker-compose down
The proxy server will be available at:
- MCP Endpoint:
http://localhost:8000/mcp/<base64url-token> - Health Check:
http://localhost:8000/health - Info:
http://localhost:8000/
3. Alternative: Run with Docker
# Build the image
docker build -t rohlik-mcp-proxy .
# Run the container
docker run -d \
--name rohlik-mcp-proxy \
-p 8000:8000 \
rohlik-mcp-proxy
# View logs
docker logs -f rohlik-mcp-proxy
# Stop the container
docker stop rohlik-mcp-proxy
docker rm rohlik-mcp-proxy
Configuration
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
RHL_EMAIL |
No | - | Optional fallback email (used when no path token is provided) |
RHL_PASS |
No | - | Optional fallback password (used when no path token is provided) |
ROHLIK_MCP_URL |
No | https://mcp.rohlik.cz/mcp |
Rohlik MCP backend endpoint |
Base64url Path Token
The proxy expects a URL path like /mcp/<base64url(email:password)>. Padding (=) is optional.
If you set RHL_EMAIL and RHL_PASS, you can also use /mcp without a token.
MCP Client Configuration
Configure your MCP client (e.g., Claude Desktop, ChatGPT) to connect to the proxy. Use the base64url token in the URL path:
{
"mcpServers": {
"rohlik": {
"url": "http://localhost:8000/mcp/<base64url-token>",
"transport": "streamable-http"
}
}
}
Or for fastmcp client:
Or using MCP Inspector:
npx @modelcontextprotocol/inspector http://localhost:8000/mcp/<base64url-token>
Development
Local Development (Without Docker)
# Install uv package manager
pip install uv
# Install dependencies
uv pip install -e .
# Run the proxy server
python proxy_server.py
Project Structure
rohlik-mcp-proxy/
├── proxy_server.py # Main proxy server implementation
├── pyproject.toml # Python project configuration
├── Dockerfile # Docker image definition
├── docker-compose.yml # Docker Compose configuration
├── .env.example # Environment variables template
├── .gitignore # Git ignore rules
└── README.md # This file
How It Works
- Client Connection: MCP client connects to the proxy at
/mcp/<base64url-token>(GET for streaming, POST for calls) - Request Forwarding: Proxy receives MCP requests from the client
- Header Injection: Proxy decodes the path token and adds authentication headers (
rhl-email,rhl-pass) - Backend Communication: Proxy forwards the authenticated request to Rohlik MCP server
- Response Handling: Proxy streams GET responses and returns POST/other responses
- Bidirectional Flow: Process repeats for all subsequent requests
┌─────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ │ │ │ │ │
│ MCP Client │ <-----> │ Rohlik Proxy │ <-----> │ Rohlik MCP │
│ │ HTTP │ (adds headers) │ HTTPS │ Backend Server │
│ │ │ │ │ │
└─────────────┘ └──────────────────┘ └─────────────────┘
Port 8000 mcp.rohlik.cz
Health Check
The proxy includes a built-in health check endpoint:
curl http://localhost:8000/health
# Returns: OK
Docker Compose automatically monitors this endpoint and restarts the container if it becomes unhealthy.
Security Considerations
- Credentials Storage: Never commit your
.envfile with real credentials to version control - Network Security: For production use, consider running the proxy behind a reverse proxy with HTTPS
- Access Control: No additional authentication is enforced by the proxy; restrict access at the network or reverse proxy level
- Password Safety: Credentials are passed via URL path and HTTP headers (ensure HTTPS and avoid logging full URLs in production)
Troubleshooting
Container won't start
# Check logs
docker-compose logs rohlik-mcp-proxy
# Common issues:
# - Port 8000 already in use
# - Invalid or missing base64 token in the URL path
Connection refused
# Verify the container is running
docker-compose ps
# Check if port is accessible
curl http://localhost:8000/health
Rohlik authentication errors
# Verify your base64url token decodes to email:password
python - <<'PY'
import base64
print(base64.urlsafe_b64decode(b"<base64url-token>").decode())
PY
License
This project is provided as-is for integration with the Rohlik MCP service.
Related Documentation
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.