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
- Open the MCP Servers panel in Cline and choose to edit the configuration.
- Add the block below.
- Save — Cline reconnects without a restart.
- 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
- Get a key at console.unzoi.com, if you have not.
- The tool reference — what the model is reading when it chooses between the six tools.
- Stories for context windows — the one habit that most changes how well an agent works against this API.
- Limits — an agent that loops can spend a monthly quota faster than you expect.
- Cline's own MCP documentation — authoritative for anything about the client itself, including config paths, which move.
Endpoint, for copying: https://api.unzoi.com/mcp