Stats
Actions
Tags
Multi-provider agent dispatch — route tasks to Anthropic, Ollama, OpenAI, or any supported model
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-agent-dispatch:dispatchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage agent dispatches via the AgentDispatch MCP server.
Manage agent dispatches via the AgentDispatch MCP server.
| Tool | Purpose |
|---|---|
mcp__dispatch__run | Dispatch headless agent (blocks until done) |
mcp__dispatch__interactive | Open interactive terminal session (non-blocking) |
mcp__dispatch__status | Check active dispatches |
mcp__dispatch__result | Get completed result |
mcp__dispatch__cancel | Cancel running dispatch |
mcp__dispatch__config | Show available models/agents/providers |
mcp__dispatch__run(
query="Fix auth bug", # Short label (max 20 chars)
prompt="Fix the JWT validation # Full task description
bug in auth.py line 42...",
agent="implementer", # Optional — general if omitted
model="sonnet" # Optional — config default if omitted
)
"sonnet", "opus", "haiku""ollama/qwen3:30b", "ollama/qwen3:235b""openai/gpt-4.1""groq/llama-4-scout"default_model from dispatch.jsongeneral — Any task, full tool accessexplore — Read-only search and analysisreviewer — Code review, read-onlyimplementer — Code implementation, full tool accessraw — No agent definition, prompt goes directly"./my-agents/security.md"Call mcp__dispatch__run multiple times in one message — they execute concurrently:
# These run in parallel:
mcp__dispatch__run(query="Fix auth", prompt="...", agent="implementer", model="sonnet")
mcp__dispatch__run(query="Add tests", prompt="...", agent="implementer", model="sonnet")
mcp__dispatch__run(query="Review API", prompt="...", agent="reviewer", model="haiku")
For tasks needing human input, use mcp__dispatch__interactive:
mcp__dispatch__statusnpx claudepluginhub markx95/claude-agent-dispatch --plugin claude-agent-dispatchCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.