Feedpeck: RSS Feed Finder & Reader by Website
Feedpeck: find any site's RSS/Atom/JSON feeds + latest posts. Free, no key.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"rss-feed-finder": {
"url": "https://feedpeck.cybermax-tools.workers.dev/mcp?via=mcp-registry"
}
}
}Remote endpoints
https://feedpeck.cybermax-tools.workers.dev/mcp?via=mcp-registrystreamable-httpWhat it can do
Tool inventory
Tools (2)
🟢find_feeds(sites, max_items_per_feed)
Find the RSS, Atom and JSON feeds a website publishes (validated by downloading and parsing each one), with feed title, type, last post date, post count and the newest posts. Use when you need a feed URL for a site or want to know if a site has a feed. Up to 5 sites per call.
Input Schema
{
"type": "object",
"properties": {
"sites": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 5,
"description": "Websites, domains, section URLs (example.com/blog), Reddit/Medium/YouTube-channel/GitHub-repo URLs, or a feed URL. Up to 5."
},
"max_items_per_feed": {
"type": "integer",
"minimum": 0,
"maximum": 10,
"default": 3,
"description": "Latest posts to include per feed (0-10)"
}
},
"required": [
"sites"
]
}🟢latest_posts(site, limit)
Get the newest posts of one website from its main feed: title, URL, published date, author, plain-text summary (max 300 chars), categories and image. Use to catch up on a blog, news site, subreddit, YouTube channel or GitHub releases without scraping pages.
Input Schema
{
"type": "object",
"properties": {
"site": {
"type": "string",
"description": "Website, domain or feed URL, e.g. \"github.blog\""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 5,
"description": "How many posts (1-10)"
}
},
"required": [
"site"
]
}Community
Evidence