Using AdsCove in Any MCP client

AdsCove Product & Engineering · Last reviewed July 10, 2026

Available · MCP

Any tool that speaks remote MCP (Streamable HTTP) can connect — WorkBuddy, Cline, Continue, Zed, Goose, or your own agent. There are only two facts that matter: the endpoint URL and a Bearer auth header. Everything else is client-specific config. If you don't know where your client keeps MCP servers, paste the agent block below into the client itself.

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. In your client's MCP config, add a Streamable HTTP server pointing at the endpoint with the Bearer header
  3. Reload the client and call list_connections
{
  "mcpServers": {
    "adscove": {
      "url": "https://adscove.com/api/mcp",
      "headers": { "Authorization": "Bearer sk_live_your_key" }
    }
  }
}

The two facts, in case your client's format differs

URL:    https://adscove.com/api/mcp   (Streamable HTTP)
Header: Authorization: Bearer sk_live_your_key

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.

Please connect me to the AdsCove MCP server in the tool I am currently using.

Details you need:
- MCP server name: adscove
- Endpoint URL: https://adscove.com/api/mcp
- Transport: Streamable HTTP (remote MCP)
- Authentication: add the HTTP header  Authorization: Bearer sk_live_MY_KEY
  (I will paste my key; if the client supports remote-MCP OAuth instead, use that and skip the header)

Steps:
1. Find where THIS client stores its MCP server configuration (its mcp.json / settings file, or an "Add MCP server" UI).
2. Add the "adscove" server above with the Bearer header.
3. Reload or restart the client so it picks up the new server.
4. Call the tool "list_connections" and show me the result to confirm it works.

Verify

Call the tool list_connections — it should return your platform connections.

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