Configure your AI client to spawnDocumentation Index
Fetch the complete documentation index at: https://rendobar.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
@rendobar/mcp via npx. The server reads local files, submits jobs to api.rendobar.com, and streams results back.
1. Get an API key
Sign in at app.rendobar.com → Settings → API Keys → Create key. Copy therb_live_... value.
2. Configure your client
- Claude Desktop
- Cursor
- Cline
- Windsurf
- Zed
- VS Code
- Claude Code
- Continue
Edit the config file:Restart Claude Desktop.
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
3. Verify
Open a chat in your client and ask: “What’s my Rendobar balance?” The agent callsget_account and reports your balance. If you see “RENDOBAR_API_KEY missing” in your client’s MCP logs, the env var didn’t propagate — re-check the config block.
Requirements
- Node 20.10 or later (
node --version). The server checks at startup and exits with a clear message if older. - npm 9+ for
npx -yto resolve scoped packages.
Auth resolution order
The server reads credentials in this order, first match wins:--api-key=<key>command-line flagRENDOBAR_API_KEYenvironment variable~/.config/rendobar/credentials.json(Unix) or%APPDATA%\rendobar\credentials.json(Windows)
{ "apiKey": "rb_live_...", "apiBase": "https://api.rendobar.com" }. The Rendobar CLI’s rb login command writes this file automatically.
Updating
npx -y @rendobar/mcp always pulls the latest published version. Pin a specific version with @rendobar/mcp@1.0.1 in the args array if you need reproducibility.