Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for managing and querying RSS/news feeds, enabling real-time fetching, searching, and retrieval of feed items.

README.md

Simply Feed MCP Server

A Model Context Protocol (MCP) server for managing and querying RSS/news feeds. This server enables AI assistants to fetch, search, and retrieve information from RSS feeds in real-time.

MCP Tools

This server provides the following MCP tools:

get-recent-feed-items

Retrieve the most recent items from all configured news/RSS feeds within a specified time window.

  • recencyInMinutes (optional): Look back period in minutes (default: 120)
  • limit (optional): Number of items to return (max: 50, default: 25)
  • skip (optional): Number of items to skip for pagination

get-feed-items

Retrieve items from a specified news/RSS feed, ordered by recency (newest first), with pagination support.

  • feedId (required): The news/RSS feed ID from which to get items
  • limit (optional): Number of items to return (max: 50, default: 25)
  • skip (optional): Number of items to skip for pagination

search-feed-items

Search and retrieve items using natural language queries.

  • query (required): Description of the items to search for
  • feedId (optional): Filter results to a specific feed
  • limit (optional): Number of items to return (max: 50, default: 25)
  • skip (optional): Number of items to skip for pagination

get-item-details

Get full details for a specific feed item.

  • feedId (required): The feed ID containing the item
  • id (required): The specific item ID

list-feeds

Retrieve a list of all configured RSS/news feeds with pagination support.

  • limit (optional): Number of feeds to return (max: 50, default: 10)
  • skip (optional): Number of feeds to skip for pagination

Installation

Prerequisites

  • Node.js 20+
  • npm or yarn

From npm

Using npx (Recommended)

No installation required! Simply use npx to run the latest version:

Global Installation (Optional)

If you prefer to install globally:

npm install -g simply-feed-mcp

From Source

  1. Clone the repository:
git clone https://github.com/hmmroger/simply-feed-mcp.git
cd simply-feed-mcp
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

Feed Configuration

The feed configuration is used by the worker to fetch and update feeds. Create a feeds.json file (or any custom filename) and specify its location using --config_file with your RSS feeds:

[
  {
    "feedUrl": "https://www.technologyreview.com/feed/"
  }
]

Environment Variables

Configure the server using these environment variables:

| Variable | Description | Default | MCP/Worker | |----------|-------------|---------|------------| | SIMPLY_FEED_CONFIG_FILE_NAME | Custom feeds config file name | feeds.json | Worker | | SIMPLY_FEED_CONFIG_BLOB_NAME | Load config from Azure Blob (format: container/blob) | - | Worker | | SIMPLY_FEED_STORAGE_CONNECTION_STRING | Azure Storage connection string | - | Both | | SIMPLY_FEED_STORAGE_FILE_FOLDER | Local storage folder for feed data | - | Both | | SIMPLY_FEED_LLM_API_KEY | API key for LLM integration | - | Both | | SIMPLY_FEED_LLM_BASE_URL | Base URL for LLM API | https://generativelanguage.googleapis.com/v1beta/openai | Both | | SIMPLY_FEED_LLM_MODEL | LLM model to use | gemini-2.5-flash-lite | Both | | SIMPLY_FEED_ITEMS_RETENTION_DAYS | Days to retain feed items | - | Worker |

Usage

[!NOTE] You must have one instance of simply-feed-mcp running as a worker to fetch and update feeds, otherwise the MCP server will not see any feeds.

Required Environment Variables

SIMPLY_FEED_LLM_API_KEY is required.

Background Worker

Run the background worker to continuously fetch and update feeds:

# Run continuously (default: refresh every 15 minutes)
npx simply-feed-mcp --worker

# Run once and exit
npx simply-feed-mcp --worker --run_once

# Custom refresh interval (in seconds)
npx simply-feed-mcp --worker --refresh_interval 600

# Use custom config file and path
npx simply-feed-mcp --worker --config_file /custom/path/my-feeds.json

# Use Azure Blob config
npx simply-feed-mcp --worker --config_blob_name container/feeds.json

MCP Server

Ensure you specify the same values for environment variables that were used in the worker.

Integration

Claude Desktop

Add to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "simply-feed-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "simply-feed-mcp"
      ],
      "env": {
        "SIMPLY_FEED_LLM_API_KEY": "<API KEY>"
      }
    }
  }
}

License

MIT License - see LICENSE file for details.

Support

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.