Docs
Sign In
Cline logo

Cline

Available

Connect FeedNest to Cline, the autonomous coding agent for VS Code.

Prerequisites

Setup

  1. 1

    Open Cline MCP settings

    In VS Code, open the Cline extension settings and navigate to the MCP Servers configuration (JSON).

  2. 2

    Add the FeedNest server

    Paste the configuration below. Replace fn_live_... with your API key.

  3. 3

    Reload VS Code

    Reload the VS Code window (Cmd/Ctrl + Shift + P → Reload Window) to pick up the new server.

Cline MCP configuration

Cline MCP settings (JSON)

{
  "mcpServers": {
    "feednest": {
      "type": "streamableHttp",
      "url": "https://mcp.feednest.com",
      "headers": {
        "Authorization": "Bearer fn_live_..."
      }
    }
  }
}

type field is required

The "type": "streamableHttp" field is mandatory for Cline. Without it, custom headers may fail silently and authentication won't work.

Verify your connection

After setup, try one of these prompts to confirm everything is working:

  • What are my unread articles?
  • Summarize my latest saved articles
  • How many feeds am I subscribed to?

Troubleshooting

Tools appear but calls fail with 401

Ensure "type": "streamableHttp" is set. Without it, Cline may not send custom headers properly.

Server not detected

Check that your JSON is valid (no trailing commas). Try reloading VS Code completely.

For more help, see the general setup guide.