Using AdsCove in Feishu / Lark
AdsCove Product & Engineering · Last reviewed July 10, 2026
Via REST bridge
Feishu is not a native MCP chat client — you can't paste our URL into a Feishu chat. The supported path is a bridge: a bot/app on the Feishu Open Platform (or an automation tool like n8n) that calls our REST API and posts results into a group. Great for "push the daily report to our ops channel at 9am."
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
- Generate an API key
- In your Feishu bot / automation, call POST /api/v1/tools/{tool_name} with the Bearer key
- Format the JSON into a Feishu message card and send it to a chat
POST https://adscove.com/api/v1/tools/{tool_name}
Authorization: Bearer sk_live_your_key
Content-Type: application/json
{ "date_range": "last_7d" }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 — it contains everything needed to set up the connection. Replace sk_live_MY_KEY with the key you generated.
Build a Feishu bot (or n8n → Feishu flow) that calls https://adscove.com/api/v1/tools/get_daily_business_report with header Authorization: Bearer sk_live_MY_KEY every morning and posts the formatted result to my Feishu group.
Verify
Trigger the bot — the report card appears in your chat.
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