feedscope-mcp
v1.0.0
Published
MCP server for FeedScope RSS feed discovery API
Downloads
17
Readme
feedscope-mcp
MCP server for FeedScope — the open RSS feed search engine and discovery API.
Search, discover, and submit RSS feeds directly from Claude, Cursor, or any MCP-compatible tool.
Tools
| Tool | Description |
|------|-------------|
| search_feeds | Search for RSS feeds by topic with hybrid keyword + semantic ranking |
| discover_feeds | Discover all RSS/Atom feeds on a website |
| get_feed | Get feed details with quality score breakdown and recent articles |
| submit_feed | Submit a feed URL for indexing |
Setup
You need a FeedScope API key. Get one at feedscope.dev.
Claude Code
claude mcp add feedscope -e FEEDSCOPE_API_KEY=fsk_your_key_here -- npx -y feedscope-mcpClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"feedscope": {
"command": "npx",
"args": ["-y", "feedscope-mcp"],
"env": {
"FEEDSCOPE_API_KEY": "fsk_your_key_here"
}
}
}
}Cursor
Add to your MCP settings:
{
"mcpServers": {
"feedscope": {
"command": "npx",
"args": ["-y", "feedscope-mcp"],
"env": {
"FEEDSCOPE_API_KEY": "fsk_your_key_here"
}
}
}
}Environment Variables
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| FEEDSCOPE_API_KEY | Yes | — | Your FeedScope API key |
| FEEDSCOPE_API_URL | No | https://feedscope.fly.dev | API base URL (for self-hosted) |
Development
npm install
npm run build
FEEDSCOPE_API_KEY=fsk_... node dist/index.jsLicense
AGPL-3.0
