Built for orchestrating work across multiple AI agents, this server provides durable handoff primitives and a shared scratchpad over MCP's HTTP transport. It runs on Railway with optional Xpay proxy support and stores state to disk. Discovery endpoints are public by default, but tool execution requires API key auth via Bearer token or x-api-key header. You'd reach for this when coordinating agent chains where context needs to persist across sessions or when one agent's output becomes another's input. The dual-remote setup (Railway + Xpay) gives you flexibility in how clients authenticate and connect.
Durable handoffs and shared scratchpad for multi-agent workflows over MCP (HTTP transport).
GET / basic service infoGET /health health and storage statsPOST /mcp JSON-RPC MCP endpointGET /robots.txt discovery fileGET /llms.txt discovery fileGET /sitemap.xml discovery filePORT default 3000DATA_DIR default /dataMCP_API_KEY required in production (NODE_ENV=production)PUBLIC_MCP_DISCOVERY default truePUBLIC_BASE_URL optional, used for absolute links in discovery filesnpm ci
npm run build
MCP_API_KEY=test-secret node dist/index.js
initialize, tools/list, resources/list, prompts/list, ping) can be public when PUBLIC_MCP_DISCOVERY=true.tools/call requires valid upstream auth when MCP_API_KEY is set:
Authorization: Bearer <MCP_API_KEY> orx-api-key: <MCP_API_KEY>MCP_API_KEY=<your-strong-key>PUBLIC_MCP_DISCOVERY=truePUBLIC_BASE_URL=https://handoff-mcp-server-production.up.railway.apphttps://handoff-mcp-server-production.mcp.xpay.sh/mcp?key=xpay_sk_...?key=..., Xpay returns auth required and requests will not forward.tools/call (x-api-key or Bearer token matching MCP_API_KEY).io.github.josephibra/handoff-mcp-serverjosephibrahimhandoff-mcp-serverhttps://handoff-mcp-server-production.mcp.xpay.sh/mcp?key=xpay_sk_...https://handoff-mcp-server-production.mcp.xpay.sh/mcp?key=xpay_sk_...x-api-key: <MCP_API_KEY> for tool execution pathsUse the same canonical MCP URL and matching auth notes everywhere to avoid inconsistent behavior.
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent