Set up Cline

Popular open-source AI coding agent for VS Code (formerly Claude Dev). Add Agentcy so Cline can pull live marketing data into your autonomous coding sessions.

SETUP
7 STEPS
  1. 01

    Sign up at app.goagentcy.com and create an API key

  2. 02

    Install the Cline extension from the VS Code Marketplace (search Cline by saoudrizwan)

  3. 03

    Click the Cline icon in the Activity Bar to open the panel

  4. 04

    Click the MCP Servers icon (server stack) → Configure tab → Advanced MCP Settings (opens cline_mcp_settings.json)

  5. 05

    Paste the config snippet below inside mcpServers, replacing YOUR_AGENTCY_API_KEY with your key

  6. 06

    Save — Cline reloads automatically and shows agentcy with a green connected indicator

  7. 07

    Optional: populate alwaysAllow with ["agentcy", "research", "list_sources", "get_current_date"] to skip per-call approval prompts

CONFIG

path: Cline Extension → MCP Servers → Configure → Advanced MCP Settings

config
{
  "mcpServers": {
    "agentcy": {
      "url": "https://data.goagentcy.com/mcp",
      "type": "streamableHttp",
      "headers": {
        "Authorization": "Bearer YOUR_AGENTCY_API_KEY"
      },
      "alwaysAllow": [],
      "disabled": false
    }
  }
}
Last verified: April 9, 2026Official docs
TIPS

IMPORTANT: include "type": "streamableHttp" (camelCase, NOT "streamable-http"). When the type field is omitted, Cline’s schema defaults to SSE — confirmed by reading Cline’s source code. Agentcy supports both transports so it won’t hard-fail without it, but streamableHttp is the recommended modern path. Cline supports an alwaysAllow list per server to auto-approve specific tools — useful for unattended Agentcy queries during autonomous coding sessions. Free open-source extension (BYOK — you provide your own LLM API key). Current version: v3.77.0 (April 1, 2026) with ~3.55M installs.

REFERENCES
4 SOURCES

Stuck or want to verify these instructions yourself? These are the documentation sources we used. If something here doesn't match what you see in your client, the vendor may have updated their UI — and we'll get this page updated.

EXPLORE DATA SOURCES

After connecting Cline and configuring your data sources in the portal, ask questions about any of them in natural language:

View all data sources →

v1.0Need help?