Skip to content
unzoi docs

Cline

The MCP servers panel, or its settings file directly.

Kind MCP client
Transport Remote HTTP, declared as a streamable-HTTP server.
Config cline_mcp_settings.json, reachable from the MCP Servers panel

Setup

  1. Open the MCP Servers panel in Cline and choose to edit the configuration.
  2. Add the block below.
  3. Save — Cline reconnects without a restart.
  4. Approve the tools you want it to be able to call.
{
  "mcpServers": {
    "unzoi": {
      "type": "streamableHttp",
      "url": "https://api.unzoi.com/mcp",
      "headers": { "x-api-key": "nai_your_key_here" },
      "disabled": false,
      "autoApprove": ["search_news", "list_stories", "get_article", "find_related"]
    }
  }
}

What differs here

  • The `type` field matters here: Cline distinguishes stdio, sse and streamableHttp, and picking sse for this endpoint fails at connect time.
  • autoApprove is worth setting for the read-only tools. Without it, Cline asks before every call, which makes a multi-step research task unusable.
  • Cline reconnects on save, so iterating on this file is quick compared to most clients.

Next

Endpoint, for copying: https://api.unzoi.com/mcp