HTTP
Agent Coordination
Fleet coordination โ inspect agents, spawn/handoff/merge, coordinate the coding-agent fleet.
agentsfleetcoordination
Connect your client
Endpointhttps://mcp.fastverk.com/agent-coord/mcp
Claude Code adds it straight from the CLI. In Claude Desktop or claude.ai, open Settings → Connectors → Add custom connector and paste the endpoint URL.
Terminal โ Claude Codebash
claude mcp add --transport http agent-coord https://mcp.fastverk.com/agent-coord/mcp
Add to CursorOne-click install for Cursor.
~/.cursor/mcp.jsonjson
{
"mcpServers": {
"agent-coord": {
"url": "https://mcp.fastverk.com/agent-coord/mcp"
}
}
}
.vscode/mcp.jsonjson
{
"servers": {
"agent-coord": {
"type": "http",
"url": "https://mcp.fastverk.com/agent-coord/mcp"
}
}
}
Codex CLI speaks stdio, so it bridges to the hosted endpoint with mcp-remote.
~/.codex/config.tomltoml
[mcp_servers.agent-coord]
command = "npx"
args = ["-y", "mcp-remote", "https://mcp.fastverk.com/agent-coord/mcp"]
Add it under Windsurf → Settings → MCP, or edit the config directly.
~/.codeium/windsurf/mcp_config.jsonjson
{
"mcpServers": {
"agent-coord": {
"serverUrl": "https://mcp.fastverk.com/agent-coord/mcp"
}
}
}
Add it to Zed's settings.json โ it bridges to the hosted endpoint with mcp-remote.
settings.jsonjson
{
"context_servers": {
"agent-coord": {
"source": "custom",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.fastverk.com/agent-coord/mcp"]
}
}
}
First connect triggers sign-in if the server requires it.
About
The agent-coord MCP server: the control plane for the fastverk coding-agent fleet. Tools to list agents and their focus, spawn sub-agents, hand off / merge work, open channels, and escalate to a human.