{
  "markdown": "# claude-envoy\n\nMCP server that dispatches Claude Code agents to any local or remote directory\n\n## Install\n\n```bash\ngit clone https://github.com/michaelslain/claude-envoy.git\nclaude --plugin-dir /path/to/claude-envoy\n```\n\n## Usage\n\nThe `envoy` tool dispatches a Claude Code agent into a directory with a prompt and returns its output.\n\n| Parameter   | Type   | Required | Description |\n|-------------|--------|----------|-------------|\n| `directory` | string | yes      | Absolute path to run the agent in |\n| `prompt`    | string | yes      | Task to give the spawned agent |\n| `host`      | string | no       | SSH host for remote dispatch (e.g. `user@host`) |\n| `model`     | string | no       | Model override: `opus`, `sonnet`, `haiku` |\n| `effort`    | string | no       | Thinking effort: `low`, `medium`, `high` |\n| `timeout`   | number | no       | Timeout in seconds (default: 300) |\n\n## Examples\n\n### Local dispatch\n\n```\nenvoy({\n  directory: \"/Users/me/my-project\",\n  prompt: \"Run the tests and fix any failures\"\n})\n```\n\n### Remote SSH dispatch\n\n```\nenvoy({\n  directory: \"/home/user/api\",\n  host: \"user@prod-server\",\n  prompt: \"Check the logs for errors in the last hour\"\n})\n```\n\n### Parallel dispatch\n\n```\nenvoy({ directory: \"/Users/me/frontend\", prompt: \"Add dark mode support\" })\nenvoy({ directory: \"/Users/me/backend\",  prompt: \"Add the /theme endpoint\" })\n```\n\n### Using different models\n\n```\nenvoy({\n  directory: \"/Users/me/project\",\n  prompt: \"Refactor the auth module\",\n  model: \"opus\",\n  effort: \"high\"\n})\n```\n\n## Requirements\n\n- [Bun](https://bun.sh) runtime\n- [Claude CLI](https://claude.ai/download) installed and authenticated\n- SSH access to the target host (for remote dispatch), with Claude CLI installed there\n\n## Development\n\n```bash\ngit clone https://github.com/michaelslain/claude-envoy.git\ncd claude-envoy\nbun install\n```\n\nTest locally:\n\n```bash\nclaude --plugin-dir .\n```\n\nRun the MCP server directly:\n\n```bash\nbun server.ts\n```\n\nWatch mode:\n\n```bash\nbun --watch server.ts\n```\n\n## License\n\nMIT\n",
  "bytes": 2026,
  "sha": "4dd10908307ab6a6c8dc6f96d936da25b190996d00aa63756c6566d3a85b1e70",
  "repo_slug": "michaelslain/claude-envoy",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_michaelslain_claude_envoy_envoy_febd561b/readme"
}