Relay
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RelayWrite a unit test for the login function"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Relay
Relay is an MCP server that plugs into Claude Code (and Cursor/CodeX). It lets your AI delegate boilerplate, first drafts, tests, and mechanical refactors to free LLM providers (Groq, Gemini, OpenRouter, and more), saving your Claude tokens and running independent tasks in parallel.
Honesty note: This is not "unlimited free Claude." Savings depend on the task. Savings numbers are always estimated and labeled as such — never fabricated.
Quick Start (New Interactive Wizard)
We've made setup incredibly easy. You don't even need to touch the command line.
1. Run the Setup Wizard
Windows: Double-click on
setup.batMac / Linux: Double-click on
setup.sh(or run./setup.shin terminal)
2. Follow the Prompts
The wizard will automatically install dependencies, compile the project, and then ask you for your API keys one by one.
If you don't have a key for a specific provider, just press Enter to skip it.
Your keys are saved securely to a local
.envfile and are never shared.
Get free API keys from:
Groq: https://console.groq.com/keys (models: llama-3.1-8b-instant, llama-3.3-70b-versatile)
Gemini: https://aistudio.google.com/apikey (model: gemini-2.0-flash)
OpenRouter: https://openrouter.ai/keys (free models with the
:freesuffix)
3. Connect to your Editor
At the end of the wizard, it will print out the exact command you need to connect Relay to Claude Code or Cursor. Just copy and paste it!
Related MCP server: LocalLama MCP Server
Manual / Advanced Usage
If you prefer doing things manually:
npm install # Automatically installs and builds
npx relay init # Starts the interactive setup wizardAdd keys manually:
npx relay add-api groq <YOUR_GROQ_KEY>
npx relay add-api gemini <YOUR_GEMINI_KEY>Check health and diagnostics:
npx relay doctor
npx relay check
npx relay statusNo API key yet? Test the whole pipeline offline with dry-run — set RELAY_DRY_RUN=1 in .env, or ask Claude to call delegate with dryRun: true. It returns a clearly-labeled synthetic response without any network call.
Troubleshooting
node dist/src/index.jsfails on Windows: Make sure you are using Node >= 20.12.0.Tools don't show up in Claude: Ensure you've run the setup wizard or
npm installso the code is compiled.Tasks fail with
ALL_MODELS_EXHAUSTED: Runnpx relay doctorandnpx relay checkto see if your API keys are valid and providers are online.
Available Tools
Tool | Description |
| Send one task to a free LLM worker |
| Run several independent tasks concurrently |
| Run dependent steps; each step gets the previous output as context |
| Show available models, health, and power scores |
| Health table (traffic lights + power + latency) + session summary |
All delegation tools accept dryRun: true for keyless testing.
CLI Commands
npx relay init # Interactive setup wizard
npx relay doctor # Diagnose environment issues
npx relay add-api <p> <key> # Save a provider key securely
npx relay status # Show health & keys
npx relay check # Live health ping
npx relay agents # List agent roles
npx relay skills # List skillsHow It Works
Claude splits a task into independent pieces
For each piece, Relay selects a healthy free model (preferring the strongest)
The
delegatetool calls the provider's OpenAI-compatible APIClaude receives the output, reviews it, and integrates it
Claude does NOT blindly trust worker output — it always reviews before using.
Configuration
relay.config.json— provider URLs, model lists, and pre-measured power scores. You can also configuremaxTokenshere..env— API keys (never logged, never committed)
Development
npm run dev # watch mode
npm run build # compile
npm run start # run MCP server
npm test # build + run network-free unit testsThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/orhanucok/relay'
If you have feedback or need assistance with the MCP directory API, please join our Discord server