Using AdsCove in OpenClaw

AdsCove Product & Engineering · Last reviewed July 10, 2026

Available · MCP

OpenClaw has its own MCP client registry. Add AdsCove as a remote Streamable HTTP server with the Bearer header, then probe it before handing it to the agent runtime.

Connection details

Everything the connection needs, in one place — copy any line into your client or your agent:

Endpoint (MCP):  https://adscove.com/api/mcp
Transport:       Streamable HTTP
Auth (option A): HTTP header  Authorization: Bearer sk_live_your_key   (key from console -> Keys)
Auth (option B): OAuth 2.1    (if the client supports remote-MCP OAuth; no key needed)
REST fallback:   POST https://adscove.com/api/v1/tools/{tool_name}   with the same Bearer header
Full catalog:    https://adscove.com/api/mcp?tools=full   (optional; default endpoint is faster and includes run_adscove_tool)
Verify tool:     list_connections   (free, read-only)

Setup steps

  1. Generate an API key on the console Keys page
  2. Run the openclaw mcp add command below
  3. Probe the server; then reload or restart any running OpenClaw gateway/agent so it picks up the new registry entry
openclaw mcp add adscove \
  --url https://adscove.com/api/mcp \
  --transport streamable-http \
  --header "Authorization: Bearer sk_live_your_key" \
  --timeout 30 \
  --connect-timeout 10

openclaw mcp doctor adscove --probe
openclaw mcp reload

Direct config shape if your OpenClaw build uses config files

{
  "mcp": {
    "servers": {
      "adscove": {
        "url": "https://adscove.com/api/mcp",
        "transport": "streamable-http",
        "headers": { "Authorization": "Bearer sk_live_your_key" },
        "timeout": 30,
        "connectTimeout": 10
      }
    }
  }
}

Or: hand it to your AI agent

Don't want to configure it yourself? Paste the block below into the AI agent you're using (Claude, Cursor, an MCP agent, etc.) — it contains everything needed to set up the connection. Replace sk_live_MY_KEY with the key you generated.

Configure OpenClaw with: openclaw mcp add adscove --url https://adscove.com/api/mcp --transport streamable-http --header "Authorization: Bearer sk_live_MY_KEY" --timeout 30 --connect-timeout 10. Then run openclaw mcp doctor adscove --probe and call list_connections.

Verify

Run openclaw mcp doctor adscove --probe, then ask the agent: "check my platform connection status".

What you can do once connected

Check the business report, compare platform ROAS against real Shopify orders, create paused ad drafts, submit budget changes — every write needs your confirmation. Try: “Which ads lost money in the last 7 days?”

Get started