Aidelly Docs
AI Agents

OpenClaw / Hermes

Connect Aidelly to OpenClaw and Hermes agents via the MCP server.

OpenClaw and Hermes are open-source AI agent frameworks. Both connect to Aidelly via the hosted MCP endpoint.

MCP endpoint

https://app.aidelly.ai/mcp

Authentication:

Authorization: Bearer YOUR_API_KEY

OpenClaw configuration

Add Aidelly as an MCP server in your OpenClaw agent config:

{
  "mcp_servers": [
    {
      "name": "aidelly",
      "url": "https://app.aidelly.ai/mcp",
      "auth": {
        "type": "bearer",
        "token": "YOUR_API_KEY"
      }
    }
  ]
}

Tool discovery

Once connected, the agent can discover all available tools:

POST /mcp
{ "method": "tools/list" }

This returns all 36 Aidelly tools. See Tool Reference for the full list.

Example agent prompt

"Connect to Aidelly and post this announcement to LinkedIn and X. Then check how yesterday's posts performed and report back."

The agent will call aidelly_create_post followed by aidelly_get_analytics automatically.

Protocol support

The Aidelly MCP server supports:

  • MCP protocol versions: 2024-11-05, 2025-03-26, 2025-06-18
  • JSON-RPC batch requests
  • CORS preflight (OPTIONS)
  • HEAD health probes

See MCP Overview for full transport details.