Rohlik Proxy
FreeNot checkedEnables interaction with the Rohlik grocery delivery service through MCP by proxying requests with automatic authentication header injection.
About
Enables interaction with the Rohlik grocery delivery service through MCP by proxying requests with automatic authentication header injection.
README
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 protected]: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
Installing Rohlik Proxy
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Newpaw/rohlik-mcp-proxyFAQ
Is Rohlik Proxy MCP free?
Yes, Rohlik Proxy MCP is free — one-click install via Unyly at no cost.
Does Rohlik Proxy need an API key?
No, Rohlik Proxy runs without API keys or environment variables.
Is Rohlik Proxy hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Rohlik Proxy in Claude Desktop, Claude Code or Cursor?
Open Rohlik Proxy on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Rohlik Proxy with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
