MCP Rss Crawler MCP Server

An MCP (Message Chain Protocol) server that fetches RSS feeds and shares them with LLMs.

Local serverstdio

What is the MCP Rss Crawler MCP server?

An MCP (Message Chain Protocol) server that fetches RSS feeds and shares them with LLMs. Exposed over MCP by the mcp rss crawler mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

  • Fetching and caching of RSS feeds (SQLite database)
  • MCP protocol implementation for seamless LLM integration
  • Support for filtering feeds by category, source, or keywords
  • Comprehensive API endpoints for feed management
  • Add, update, and delete feeds
  • Support for fetching articles from Firecrawl

Its toolset

Everything the assistant can do here goes through one of these:

  • Bun — Firecrawl API key
  • PORT — Server port (default: 5556)
  • FIRECRAWL_API_KEY — Firecrawl API key
  • DB_DIR — Database directory (default: ~/.mcp-rss-crawler)

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration

You will need 4 environment variables: PORT, DB_DIR, FIRECRAWL_API_KEY, YOUR_FIRECRAWL_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Bun - Firecrawl API key - Claude Desktop or other MCP client

When to reach for it

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Rss Crawler's toolset — Bun, PORT, FIRECRAWL_API_KEY and 1 more — is a fair guide to whether it matches your workflow. It is maintained by mshk; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp rss crawler mcp server does with a few real requests.

Available tools

ToolWhat it does
BunFirecrawl API key
PORTServer port (default: 5556)
FIRECRAWL_API_KEYFirecrawl API key
DB_DIRDatabase directory (default: ~/.mcp-rss-crawler)

How to install the MCP Rss Crawler MCP server

{
  "mcpServers": {
    "rss-crawler": {
      "command": "/path/to/bun",
      "args": ["run", "/path/to/mcp-rss-crawler/apps/mcp-server/src/mcp-cli.ts"],
      "cwd": "/path/to/mcp-rss-crawler",
      "env": {
        "PORT": "5556",
        "DB_DIR": "/path/to/mcp-rss-crawler",
        "FIRECRAWL_API_KEY": "fc-<YOUR_FIRECRAWL_API_KEY>"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Bun - Firecrawl API key - Claude Desktop or other MCP client
VariableDescriptionRequired
PORTConfiguration value read at startup.Optional
DB_DIRFilesystem location the server is allowed to use.Optional
FIRECRAWL_API_KEYCredential the server authenticates with.Yes
YOUR_FIRECRAWL_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Rss Crawler to Bun.
  • Use MCP Rss Crawler to PORT.
  • Use MCP Rss Crawler to FIRECRAWL API KEY.

Frequently asked questions

It connects MCP Rss Crawler to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Bun, PORT, FIRECRAWL_API_KEY, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Rss Crawler directly.