One endpoint, the whole control plane.
A single MCP server (Model Context Protocol — how AI agents call tools) exposes your API versions, endpoints, targets, billing.
Drops into any agent.
Claude, ChatGPT, Cursor, OpenCode. Bearer token in, project on rails.
No forms. No clicks.
Describe the integration in plain English. Your agent writes the config.
POST https://mcp.echorelay.dev
{
"jsonrpc": "2.0", "id": 1,
"method": "tools/call",
"params": {
"name": "create_endpoint",
"arguments": {
"lineKey": "v1",
"endpoint": {
"name": "Webhook",
"url": "/notify",
"httpMethod": "POST",
"targets": [{
"name": "Slack",
"targetUrl": "https://hooks.slack.com/..."
}]
}
}
}
}