Read and monitor RSS/Atom feeds — get latest articles, blog posts, and news from any website with a feed.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"rss": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-rss",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify rss feed reader is ready. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Read and monitor any RSS or Atom feed. No API key required.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-rss
| Tool | Description |
|---|---|
read_feed | Fetch and parse an RSS/Atom feed |
read_multiple_feeds | Read multiple feeds, sorted by date |
get_new_items | Get items published after a date (for polling) |
get_feed_info | Get feed metadata |
discover_feed | Find RSS/Atom feeds on a website |
No API key required. This MCP reads public feeds — just provide the feed URL.
Combine with a Social MCP to auto-share new blog posts:
{
"tool": "read_multiple_feeds",
"arguments": {
"urls": [
"https://blog.cloudflare.com/rss",
"https://openai.com/blog/rss",
"https://engineering.fb.com/feed/"
],
"limit": 10
}
}
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-rss
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Rss MCP exposes the following tools to your AI agent: `_ping`, `read_feed`, `read_multiple_feeds`, `get_new_items`, `get_feed_info`. Use these to automate rss workflows directly from Claude, Cursor, or any MCP-compatible client.
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-rss": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-rss"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-rss", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-rss"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Yes. Rss requires authentication. Check the MCP's documentation for the required credentials.