CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

FeedKit

quartzunit/feedkit
STDIOregistry active
Summary

This server gives Claude access to 444 curated RSS and Atom feeds across academia, finance, science, technology, society, and pets. It exposes nine tools: search the feed catalog by category or language, subscribe to feeds, collect articles in parallel, run full-text searches across stored content with SQLite FTS5, and retrieve latest entries. You can fetch a single feed on the fly without subscribing, bulk subscribe to entire categories like all 68 tech feeds at once, or search collected articles with queries like "kubernetes deployment". The underlying Python package supports OPML import and export, stores everything locally in SQLite, and handles async parallel fetching with configurable concurrency. Useful when you want Claude to monitor specific news sources, aggregate technical blogs, or search across previously collected content without hitting rate limits on live feeds.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

FeedKit

PyPI Python License Tests

한국어 문서 · llms.txt

RSS/Atom feed collection with 444 curated, verified feeds. CLI + Python API + MCP server.

Quick Start

pip install feedkit

feedkit search cloudflare           # search the built-in catalog
feedkit subscribe-catalog -c technology   # subscribe to all 68 tech feeds
feedkit collect                     # fetch all subscriptions (async parallel)
feedkit find "kubernetes"           # full-text search collected articles

Install

pip install feedkit             # core (CLI + Python API)
pip install "feedkit[mcp]"      # + MCP server
pip install "feedkit[all]"      # + MCP + OPML import/export

Requirements: Python 3.11+

How It Works

flowchart LR
    A["📋 Catalog\n444 curated feeds"] --> B["Subscribe\nselect feeds"]
    B --> C["🔄 Collect\nfetch new entries"]
    C --> D["📦 Store\nSQLite database"]
    D --> E["🔍 Query\nfilter & retrieve"]

CLI Reference

Catalog Commands

feedkit search [QUERY]

Search the built-in catalog of 444 curated feeds.

feedkit search aws                    # search by title or domain
feedkit search --category science     # filter by category
feedkit search --language ko          # filter by language
feedkit search -c finance -l en -n 50 # combine filters
feedkit search -j                     # JSON output (for piping)
OptionShortDefaultDescription
--category-cFilter by category
--language-lFilter by language code (en, ko, ja, zh)
--limit-n20Max results
--json-output-jOutput as JSON

feedkit categories

List all available catalog categories.

$ feedkit categories
  academia
  finance
  pets
  science
  society
  technology

feedkit stats

Show catalog and local subscription statistics.

$ feedkit stats
Catalog: 444 feeds
  academia: 13
  finance: 89
  pets: 27
  science: 128
  society: 119
  technology: 68

Local: 68 subscriptions, 1,247 articles

Subscription Commands

feedkit subscribe <URL>

Subscribe to a single feed.

feedkit subscribe https://blog.cloudflare.com/rss/
feedkit subscribe https://example.com/rss -c tech -t "My Feed"
OptionShortDescription
--category-cCategory label
--title-tDisplay title override

feedkit subscribe-catalog -c <CATEGORY>

Subscribe to all feeds in a catalog category at once.

feedkit subscribe-catalog -c technology   # subscribe to all 68 tech feeds
feedkit subscribe-catalog -c science      # subscribe to all 128 science feeds

feedkit unsubscribe <URL>

Remove a feed subscription and its collected articles.

feedkit list

List all current subscriptions with fetch counts and error counts.

Collection Commands

feedkit collect

Fetch new articles from all subscribed feeds (async parallel).

feedkit collect                    # collect all
feedkit collect -c technology      # collect only tech feeds
feedkit collect -n 50              # max 50 concurrent requests
OptionShortDefaultDescription
--category-cOnly collect from this category
--concurrency-n20Max concurrent HTTP requests

Output:

Collecting from 68 feeds...
 67/68 feeds OK, 412 new articles, 8234ms

feedkit latest

Show most recently collected articles.

feedkit latest                # latest 20 articles
feedkit latest -n 50          # latest 50
feedkit latest -c finance     # latest from finance only

feedkit find <QUERY>

Full-text search (SQLite FTS5) across all collected articles.

feedkit find "kubernetes deployment"
feedkit find "large language model" -n 50

OPML Commands

feedkit import-opml <PATH>

Import feeds from an OPML file (Feedly, Inoreader, NetNewsWire, etc.).

feedkit import-opml subscriptions.opml

feedkit export-opml <PATH>

Export current subscriptions to OPML.

feedkit export-opml backup.opml

Python API

from feedkit import search_catalog, fetch_feed, get_catalog_stats, FeedStore
from feedkit.core import collect

# Search the built-in catalog
feeds = search_catalog("cloudflare")
feeds = search_catalog(category="technology", language="en", limit=50)

# Fetch a single feed (async)
entries = await fetch_feed("https://blog.cloudflare.com/rss/")
for entry in entries:
    print(entry.title, entry.url, entry.published)

# Subscribe and collect
store = FeedStore()                              # SQLite at ~/.feedkit/feedkit.db
store.subscribe("https://blog.cloudflare.com/rss/", category="tech")
result = await collect(store, concurrency=20)    # async parallel fetch
print(f"{result.new_articles} new, {result.feeds_ok}/{result.feeds_total} OK")

# Search collected articles (FTS5)
articles = store.search("kubernetes", count=10)

# Latest articles
articles = store.get_latest(count=20, category="tech")

# Feed health
health = store.get_health()                      # fetch/error counts per feed

# Catalog stats
stats = get_catalog_stats()                      # {total_feeds, categories, languages}

store.close()

Key Classes

ClassDescription
FeedStoreSQLite-backed subscription + article store (~/.feedkit/feedkit.db)
FeedEntrySingle entry from a fetched feed (title, url, summary, published, author)
CollectResultBulk collection result (feeds_ok, feeds_error, new_articles, duration_ms)
CatalogFeedEntry from the built-in catalog (url, title, category, subcategory, language, domain)

MCP Server

pip install "feedkit[mcp]"
feedkit-mcp                    # starts stdio MCP server

Configuration

Claude Code (~/.claude/settings.json):

{
  "mcpServers": {
    "feedkit": {
      "command": "feedkit-mcp"
    }
  }
}

Tools Reference

#ToolParametersDescription
1fetch_single_feedurl, count=10Fetch entries from any RSS/Atom URL (no subscription needed)
2search_feed_catalogquery, category, language, count=20Search the built-in 444-feed catalog
3catalog_statsGet catalog statistics (total, by category, by language)
4subscribe_feedurl, title, categorySubscribe to a feed for ongoing collection
5unsubscribe_feedurlRemove a subscription
6list_subscriptionsList all subscriptions with status
7collect_feedscategoryCollect new articles from all subscriptions
8search_articlesquery, count=10Full-text search across collected articles
9get_latest_articlescategory, count=20Get most recently collected articles

MCP Workflow Example

User: "What are the latest AI papers on arXiv?"

1. search_feed_catalog(query="arxiv", category="science")
   → finds arXiv cs.AI, cs.LG, cs.CL feeds

2. subscribe_feed(url="https://rss.arxiv.org/rss/cs.AI")

3. collect_feeds(category="science")
   → fetches new entries

4. get_latest_articles(category="science", count=10)
   → returns latest papers

Built-in Catalog

444 verified feeds across 6 categories. All audited — hard paywalls (Bloomberg, FT, WSJ) and broken URLs removed.

CategoryFeedsSubcategoriesHighlights
technology68ai_ml, developer, it_news, security, startup, ...AWS, Cloudflare, Stripe, Netflix, HN, Go Blog, Rust Blog
science128journal, preprint, news, governmentNature, Science, arXiv, bioRxiv, medRxiv, NASA, PLOS
society119news_us, news_ko, news_uk, news_intl, factcheck, ...BBC, NPR, NYT, NHK, JTBC, PolitiFact, Snopes
finance89markets, central_bank, regulatory, cryptoFed, BOE, BOJ, SEC, CNBC, CoinDesk, Yahoo Finance
pets27veterinary, community, blog, healthAKC, PetMD, ASPCA, dvm360, r/dogs, r/cats
academia13ai_ml, research, institutionGoogle AI, DeepMind, Stanford HAI, Hugging Face

Languages: English (381), Korean (47), Japanese (14), Chinese (2)

Full feed list: CATALOG.md

Why FeedKit?

awesome-rss-feeds (2.1K★)engineering-blogs (37.5K★)FeedKit
TypeMarkdown listMarkdown listPython package
Feeds~500~600444
ScopeGeneralTech blogs onlyTech + Science + Finance + News + Factcheck
Last update2021 (stale)2022 (stale)Active (daily collection)
Verified workingNoNoYes (778K+ articles collected)
Legal auditNoNoYes (paywall/ToS feeds removed)
CLINoNoYes (12 commands)
Programmatic APINoNoYes (async Python)
MCP serverNoNoYes (9 tools)
OPMLNoNoYes (import/export)
FTS searchNoNoYes (SQLite FTS5)

Disclaimer

This package distributes a catalog of publicly available RSS feed URLs, not the feed content itself. RSS is a syndication standard — publishing an RSS feed is an explicit invitation for readers to subscribe. FeedKit fetches feeds on the user's behalf and does not store or redistribute copyrighted content.

Feeds behind hard paywalls (Bloomberg, FT, WSJ, Barron's) and feeds with aggressive terms of service have been removed from the catalog.

Used in

  • newswatch — RSS news monitoring pipeline (feedkit → markgrab → embgrep → diffgrab)

License

MIT


Part of the QuartzUnit ecosystem — composable Python libraries for data collection, extraction, search, and AI agent safety.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packagefeedkit
TransportSTDIO
UpdatedMar 18, 2026
View on GitHub