RSS Feeds MCP Server

RSS Feeds MCP Server

Enables digital marketers to fetch, search, and filter RSS blog feeds from multiple sources, with tools for managing feeds and searching across categories and date ranges.

Category
Visit Server

README

RSS Feeds MCP Server

An MCP server for digital marketers to fetch, search, and filter RSS blog feeds. Works with Claude Desktop and any MCP-compatible client.

Quick setup with Claude Code (copy this prompt)

Open Claude Code in your terminal and paste the prompt below. It clones this repo, builds it, and wires it into Claude Desktop for you.

Set up this RSS MCP server for my Claude Desktop.

Repo: https://github.com/lionkiii/rss-mcp-marketing

Do all of the following:
1. Clone the repo into a sensible folder (e.g. ~/mcp-servers/rss-mcp-marketing) if it isn't already cloned, then cd into it.
2. Run `npm install` and `npm run build`. Confirm `dist/index.js` exists.
3. Find the absolute path to my node binary (`which node`; if it is under nvm use that full path, because Claude Desktop does not load my shell PATH).
4. Locate my Claude Desktop config:
   - macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
   - Windows: %APPDATA%\Claude\claude_desktop_config.json
   Create the file with `{}` if it does not exist. Back it up first.
5. IMPORTANT: fully quit Claude Desktop before editing the config, because a running Claude Desktop rewrites the file on write and will discard my changes. On macOS quit it with `osascript -e 'tell application "Claude" to quit'`.
6. Merge (do not overwrite) an "mcpServers" entry named "rss-feeds" whose "command" is my absolute node path and whose "args" is the absolute path to dist/index.js. Keep the JSON valid and preserve any existing config keys and other mcpServers.
7. Relaunch Claude Desktop and verify the config still contains the rss-feeds entry after launch, and that a node process running dist/index.js was spawned.
8. Tell me to try: "fetch the latest marketing blogs".

Tools

  • list_categories - list feed categories
  • list_feeds - list configured feeds
  • add_feed - add a feed (name, url, category)
  • remove_feed - remove a feed by name
  • fetch_blogs - latest posts across all feeds (range, limit)
  • fetch_by_category - posts filtered by category
  • fetch_from_source - posts from one source
  • search_blogs - keyword search across all feeds

Date ranges: 1d, 7d, 1w, 30d, 1m, this_week, this_month.

Setup

npm install
npm run build

Connect to Claude Desktop

Config file (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "rss-feeds": {
      "command": "node",
      "args": ["/absolute/path/to/RSS/dist/index.js"]
    }
  }
}

Notes:

  • Use an absolute path to dist/index.js.
  • If node is installed via nvm, use the absolute node path (e.g. ~/.nvm/versions/node/<version>/bin/node) because Claude Desktop does not load your shell PATH.
  • Run npm run build after editing src/index.ts, then restart Claude Desktop.

Managing feeds

Feeds live in feeds.json. Edit directly or use the add_feed / remove_feed tools. All feed requests use a browser User-Agent and a 20s hard timeout so a slow or dead feed can never hang the whole request.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured