Skip to content

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.

The MCP channel provides tools to any connected MCP client:

ToolDescription
completeSend a prompt and get a completion back synchronously. Routes to the best available worker.
dispatchQueue a job for async processing. Returns a job ID immediately.
statusCheck a job’s status or get an overview of all workers.
recruitRegister the current machine as a new worker in the fleet.

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.

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.

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.

VariableDefaultDescription
MODELREINS_API_URLYour ModelReins dashboard URL (e.g. https://app.modelreins.com)
MODELREINS_API_KEYAPI key from your dashboard settings

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.