Sponsored by Deepsite.site

FeedNest

Created By
feednest-app2 days ago
ChatGPT searches the internet. Perplexity crawls billions of pages. When you ask about your industry, your interests, your world, they give you everything except what matters. FeedNest is different. Your AI works exclusively with the sources you choose: the blogs you trust, the publications you follow, the experts you believe in. No algorithmic noise. No black-box results. Intelligence grounded in your world. This MCP server gives any AI assistant direct access to your feeds, articles, highlights, notes, and tags through natural language.
Overview

FeedNest MCP Server

Your sources. Not the whole web. Ask your AI about your feeds - it already knows.

ChatGPT searches the internet. Perplexity crawls billions of pages. When you ask about your industry, your interests, your world - they give you everything except what matters.

FeedNest is different. Your AI works exclusively with the sources you choose: the blogs you trust, the publications you follow, the experts you believe in. No algorithmic noise. No black-box results. Intelligence grounded in your world.

This MCP server gives any AI assistant - ChatGPT, Claude, Gemini, Grok, Cursor, Windsurf, Cline, Le Chat, and more - direct access to your feeds, articles, highlights, notes, and tags through natural language.

Website Docs


What Your AI Can Do

Just ask. Your AI handles the rest.

  • Morning briefings - Wake up to a summary of everything that happened overnight across your feeds
  • Compare coverage - See how different sources report the same story, side by side
  • Spot trends early - Your AI detects emerging patterns before they hit mainstream
  • Deep-dive any topic - Get a comprehensive synthesis from every source you follow
  • Track developing stories - Follow a narrative as it evolves across all your feeds
  • Instant search - Find any article across all your sources in seconds
  • Highlights and notes - Save what matters and annotate with your own thoughts
  • Audio briefings - Turn any article or summary into something you can listen to

Quick Start

Prerequisites

  1. A FeedNest account with a Pro subscription
  2. An API key - generate one from Settings → Developer API in your dashboard

ChatGPT

  1. Go to Settings → Apps & Connectors → Advanced and enable Developer Mode
  2. Go to Settings → Apps → Create. Name it FeedNest and set the URL to https://mcp.feednest.com
  3. ChatGPT will redirect you to FeedNest - log in and authorize

No API key needed. ChatGPT handles the OAuth flow automatically.

Option B: Responses API

Include FeedNest as an MCP tool in your API request:

{
  "type": "mcp",
  "server_url": "https://mcp.feednest.com",
  "server_label": "feednest",
  "authorization": "fn_live_YOUR_API_KEY"
}

Claude

  1. Click profile icon → Settings → Connectors → Add custom connector
  2. Set Name to FeedNest, Remote MCP server URL to https://mcp.feednest.com
  3. Leave OAuth Client ID and Secret empty. Click Add and authorize.

Claude Code

claude mcp add --transport http feednest https://mcp.feednest.com \
  --header "Authorization: Bearer fn_live_YOUR_API_KEY"

Add -s user for global access across all projects.

Claude Desktop (requires bridge)

Claude Desktop only supports stdio-based servers. Use the mcp-remote bridge:

{
  "mcpServers": {
    "feednest": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "https://mcp.feednest.com",
        "--header", "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer fn_live_YOUR_API_KEY"
      }
    }
  }
}

Config path: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS), %APPDATA%\Claude\claude_desktop_config.json (Windows), or ~/.config/Claude/claude_desktop_config.json (Linux).

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for global):

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

Tip: Cursor supports env var interpolation: "Bearer ${env:FEEDNEST_API_KEY}". Do not add a "type" field - Cursor auto-detects from the "url" key.

Le Chat (Mistral)

Available on all plans, including the free tier.

  1. Go to Sidebar → Intelligence → Connectors
  2. Click + Add Connector → Custom MCP Connector
  3. Set Name to FeedNest, Server URL to https://mcp.feednest.com
  4. Set Auth type to API Token Authentication, Authorization to Bearer fn_live_YOUR_API_KEY

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "feednest": {
      "serverUrl": "https://mcp.feednest.com",
      "headers": {
        "Authorization": "Bearer fn_live_YOUR_API_KEY"
      }
    }
  }
}

Important: Windsurf uses "serverUrl" (not "url"). Using the wrong key causes a silent failure.

Cline

In VS Code, open Cline extension settings → MCP Servers configuration (JSON):

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

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

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "feednest": {
      "httpUrl": "https://mcp.feednest.com",
      "headers": {
        "Authorization": "Bearer fn_live_YOUR_API_KEY"
      }
    }
  }
}

Note: Gemini CLI uses "httpUrl" (not "url"). The "url" field is reserved for SSE transport. CLI only - gemini.google.com does not support external MCP servers.

Grok (xAI)

Available through the xAI API/SDK only, not from the grok.com chat UI.

curl https://api.x.ai/v1/responses \
  -H "Authorization: Bearer $XAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "grok-3",
    "tools": [{
      "type": "mcp",
      "server_url": "https://mcp.feednest.com",
      "server_label": "feednest",
      "authorization": "Bearer fn_live_YOUR_API_KEY"
    }],
    "input": "What are my unread articles?"
  }'

Any other MCP client

Any client supporting Streamable HTTP can connect using:

  • URL: https://mcp.feednest.com
  • Header: Authorization: Bearer fn_live_YOUR_API_KEY

For stdio-only clients, use the mcp-remote bridge:

{
  "mcpServers": {
    "feednest": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote",
        "https://mcp.feednest.com",
        "--header", "Authorization:Bearer fn_live_YOUR_API_KEY"
      ]
    }
  }
}

Tools (26)

Articles

ToolDescriptionKey Parameters
get_articlesList articles with title, source, date, and summary preview. Views: newsfeed, by-feed, by-folder, by-tag, tagged, highlighted, noted.view*, feed_id, folder_id, tag_id, limit, query, sort, unread_only, date_from, date_to, count_only
get_articleGet full article content including highlights, notes, and reading time.article_id*
extract_articleFetch full content from the original URL when RSS truncated it.article_id*

Read Status

ToolDescriptionKey Parameters
mark_as_readMark an article as read.article_id*
mark_as_unreadMark an article as unread.article_id*
mark_all_as_readMark all articles as read, optionally filtered by feed or folder.feed_id, folder_id

Saving

ToolDescriptionKey Parameters
save_articleSave an article for later reading.article_id*
unsave_articleRemove an article from saved items.article_id*
save_urlSave an external URL for later reading.url*
get_savedList saved articles with search, date filtering, and sorting.limit, query, sort, date_from, date_to

Feeds & Structure

ToolDescriptionKey Parameters
get_feedsList subscribed feeds with unread counts. Search by name.folder_id, query, limit
get_foldersList all feed folders with feed counts.-
get_tagsList all tags with article counts.-

Tagging

ToolDescriptionKey Parameters
create_tagCreate a new tag for categorizing articles.name*, color
delete_tagDelete a tag by ID.tag_id*
tag_articleAdd or remove a tag on an article.article_id*, tag_id*, action* (add/remove)

Highlights

ToolDescriptionKey Parameters
get_highlightsGet all text highlights from an article.article_id*
add_highlightHighlight a text passage. The text must exist exactly in the article.article_id*, text*, color
remove_highlightRemove a highlight from an article.article_id*, highlight_id*

Notes

ToolDescriptionKey Parameters
get_notesGet the note on an article.article_id*
add_noteAdd or update a note on an article.article_id*, content*
delete_noteDelete a note from an article.article_id*

History

ToolDescriptionKey Parameters
get_recently_readGet recently opened articles. Supports search and date filtering.limit, since, date_to, query, sort

Output Feeds

ToolDescriptionKey Parameters
get_output_feedsList public RSS output feeds created by the user.-

AI

ToolDescriptionKey Parameters
text_to_speechGenerate audio from an article using text-to-speech.article_id*

Stats

ToolDescriptionKey Parameters
get_statsReading streak, articles read today, reading time, total feeds, unread count, saved count.-

* = required parameter


Example Conversation

You: "What's happening in AI today?"

ChatGPT: "Based on your tech feeds, here are today's 3 biggest stories:

1. OpenAI announced GPT-5, covered first in your Hacker News feed
2. EU AI Act enforcement begins, mentioned across 4 of your sources
3. Google published new Gemini research, from your AI folder

Want me to summarize any of them?"

More things you can ask

  • "Give me a morning briefing from my feeds"
  • "Compare how Bloomberg and Reuters covered this story"
  • "What did I read yesterday?"
  • "Save this article and highlight the key findings"
  • "Tag all AI-related articles with 'Machine Learning'"
  • "How's my reading streak going?"
  • "Turn this article into audio"

Authentication

API Key (personal use)

Generate a key from Settings → Developer API in the FeedNest dashboard. Keys start with fn_live_ followed by 32 hex characters.

Authorization: Bearer fn_live_abc123...

OAuth 2.1 (third-party apps)

The server supports full OAuth 2.1 with PKCE. Discovery endpoint:

https://mcp.feednest.com/.well-known/oauth-protected-resource

ChatGPT and Claude.ai handle OAuth automatically - no API key needed for those.

Scopes

ScopeAccess
readAll read-only tools (get_articles, get_feeds, get_stats, etc.)
writeAll mutation tools (mark_as_read, save_article, add_highlight, etc.)
aiAI tools (text_to_speech)

You Stay in Control

  • You choose what's visible - Pick exactly which feeds, folders, and actions your AI can access
  • Encrypted and verified - Every request is secured so no one else can reach your data
  • Built-in usage limits - 1,000 requests/hour per key, your account stays protected
  • Revoke access instantly - One click from your dashboard

Troubleshooting

IssueSolution
"Bearer token required"Check that the Authorization header is set correctly
"Invalid API key format"Key must start with fn_live_ followed by 32 hex characters
"Invalid or revoked API key"Regenerate from Settings → Developer API
"API access requires a Pro subscription"Upgrade to Pro at feednest.com
"Rate limit reached"Wait a few minutes and retry
"Insufficient scope"Your API key doesn't have the required scope
Tools not appearingRestart your AI client after changing MCP configuration

License

MIT

Server Config

{
  "mcpServers": {
    "feednest": {
      "url": "https://mcp.feednest.com",
      "headers": {
        "Authorization": "Bearer fn_live_YOUR_API_KEY"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
ChatWiseThe second fastest AI chatbot™
WindsurfThe new purpose-built IDE to harness magic
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
CursorThe AI Code Editor
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Tavily Mcp
Serper MCP ServerA Serper MCP Server
Amap Maps高德地图官方 MCP Server
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Playwright McpPlaywright MCP server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
DeepChatYour AI Partner on Desktop