MCP Channel
The MCP (Model Context Protocol) channel turns any Claude Code session or VS Code window into a fleet worker. It exposes ModelReins tools directly in your editor — dispatch jobs, check status, and recruit machines without leaving your workflow.
What it does
Section titled “What it does”The MCP channel provides tools to any connected MCP client:
| Tool | Description |
|---|---|
complete | Send a prompt and get a completion back synchronously. Routes to the best available worker. |
dispatch | Queue a job for async processing. Returns a job ID immediately. |
status | Check a job’s status or get an overview of all workers. |
recruit | Register the current machine as a new worker in the fleet. |
Install for Claude Code
Section titled “Install for Claude Code”Add to your .mcp.json:
{ "mcpServers": { "modelreins": { "command": "npx", "args": ["-y", "@mediagato/modelreins-channel"], "env": { "MODELREINS_API_URL": "https://app.modelreins.com", "MODELREINS_API_KEY": "your-api-key" } } }}Get your API key from the dashboard at app.modelreins.com under Settings.
Install for VS Code
Section titled “Install for VS Code”Open settings (Ctrl+Shift+P → “Preferences: Open User Settings (JSON)”) and add:
{ "mcp": { "servers": { "modelreins": { "command": "npx", "args": ["-y", "@mediagato/modelreins-channel"], "env": { "MODELREINS_API_URL": "https://app.modelreins.com", "MODELREINS_API_KEY": "your-api-key" } } } }}Reload the window. The ModelReins tools appear in VS Code’s MCP-aware tools.
The Saddle (alternative)
Section titled “The Saddle (alternative)”For a richer VSCode experience, install the Saddle extension instead. The Saddle provides a full panel with dispatch, conversation threading, effort dial, and fleet status — no MCP configuration needed.
Configuration
Section titled “Configuration”| Variable | Default | Description |
|---|---|---|
MODELREINS_API_URL | — | Your ModelReins dashboard URL (e.g. https://app.modelreins.com) |
MODELREINS_API_KEY | — | API key from your dashboard settings |
When to use MCP vs the Saddle
Section titled “When to use MCP vs the Saddle”Use the MCP channel when you want AI tools to programmatically dispatch to your fleet — automated workflows, CI pipelines, or Claude Code sessions that act as workers.
Use the Saddle when you want a visual dispatch interface in your editor — the effort dial, conversation threading, and fleet status panel.
Both connect to the same fleet. Both respect the Director’s routing. Both show up on the Wall.