ClewdR is a production-grade, high-performance proxy server engineered specifically for Claude (Claude.ai, Claude Code) and Google Gemini (AI Studio, Vertex AI). Built with Rust for maximum performance and minimal resource usage, it provides enterprise-level reliability with consumer-friendly simplicity.
- ๐ 10x Performance: Outperforms script-language implementations
- ๐พ 1/10th Memory: Uses only single-digit MB in production
- ๐ง Production Ready: Handles thousands of requests per second
- ๐ Multi-Platform: Native support for Windows, macOS, Linux, Android
|
|
| Metric | ClewdR | Traditional Proxies |
|---|---|---|
| Memory Usage | <10 MB |
100-500 MB |
| Requests/sec | 1000+ |
100-200 |
| Startup Time | <1 second |
5-15 seconds |
| Binary Size | ~15 MB |
50-200 MB |
| Dependencies | Zero |
Node.js/Python + libs |
# Download the latest release for your platform
wget https://github.com/Xerxes-2/clewdr/releases/latest/download/clewdr-[platform]
# Extract the binary (if necessary)
tar -xzf clewdr-[platform].tar.gz
# Navigate to the directory
cd clewdr-[platform]
# Make executable (Linux/macOS)
chmod +x clewdr
# Run ClewdR
./clewdr๐ฆ Platform Downloads
| Platform | Architecture | Download Link |
|---|---|---|
| ๐ช Windows | x64 | clewdr-windows-x64.exe |
| ๐ง Linux | x64 | clewdr-linux-x64 |
| ๐ง Linux | ARM64 | clewdr-linux-arm64 |
| ๐ macOS | x64 | clewdr-macos-x64 |
| ๐ macOS | ARM64 (M1/M2) | clewdr-macos-arm64 |
| ๐ค Android | ARM64 | clewdr-android-arm64 |
- ๐ Open your browser to
http://127.0.0.1:8484 - ๐ Use the Web Admin Password displayed in the console
- ๐ Welcome to ClewdR's management interface!
๐ก Pro Tips:
- Forgot password? Delete
clewdr.tomland restart- Docker users: Password appears in container logs
- Change password: Use the web interface settings
|
|
ClewdR provides multiple API endpoints. Check the console output for available endpoints:
# Claude Endpoints
Claude Web: http://127.0.0.1:8484/v1/messages # Native format
Claude OpenAI: http://127.0.0.1:8484/v1/chat/completions # OpenAI compatible
Claude Code: http://127.0.0.1:8484/code/v1/messages # Claude Code
# Gemini Endpoints
Gemini Native: http://127.0.0.1:8484/v1/v1beta/generateContent # Native format
Gemini OpenAI: http://127.0.0.1:8484/gemini/chat/completions # OpenAI compatible
Vertex AI: http://127.0.0.1:8484/v1/vertex/v1beta/ # Vertex AISillyTavern Configuration
{
"api_url": "http://127.0.0.1:8484/v1/chat/completions",
"api_key": "your-api-password-from-console",
"model": "claude-3-sonnet-20240229"
}Continue VSCode Extension
{
"models": [
{
"title": "Claude via ClewdR",
"provider": "openai",
"model": "claude-3-sonnet-20240229",
"apiBase": "http://127.0.0.1:8484/v1/",
"apiKey": "your-api-password-from-console"
}
]
}Cursor IDE Configuration
{
"openaiApiBase": "http://127.0.0.1:8484/v1/",
"openaiApiKey": "your-api-password-from-console"
}- โ Check cookie/key status in the web dashboard
- โ Monitor request logs for successful connections
- โ Test with a simple chat request
- โ Enjoy blazing-fast LLM proxy performance!
Github Aggregated Wiki: https://github.com/Xerxes-2/clewdr/wiki
- Clewd Modified Version - A modified version of the original Clewd, providing many inspirations and foundational features.
- Clove - Provides the support logic for Claude Code.