-
Notifications
You must be signed in to change notification settings - Fork 0
Home
BLUECARBONS Digital Agency edited this page Jul 3, 2026
·
3 revisions
Welcome to the official documentation for agentic-rss-parser v1.4.0 — an open-source, Node.js RSS/Atom parser with built-in heuristic and LLM-based relevance analysis, deduplication, enrichment, pluggable storage, a CLI, and an MCP server.
| Page | What it covers |
|---|---|
| Installation | npm / pnpm install, Node version requirements |
| Quick Start | Working code examples in 5 minutes |
| Architecture | Module map, data-flow, design decisions |
| API Reference | Every exported function and class, with signatures |
| Configuration | All config knobs — concurrency, providers, signals, timeouts |
| Storage Adapters | SQLite adapter, in-memory adapter, custom adapters |
| MCP Server | Running as a Model Context Protocol tool server |
| CLI |
agentic-rss command-line usage |
| Testing | Running tests, writing new ones, deterministic patterns |
| Contributing | Branch workflow, PR checklist, sprint conventions |
| Changelog | Version history |
npm install agentic-rss-parser
import { createParser } from 'agentic-rss-parser';
const parser = createParser();
const results = await parser.parseFeed('https://example.com/feed.xml');
for (const { item, analysis } of results) {
console.log(analysis.decision, analysis.confidence, item.title);
}No API key required — the default heuristic provider works offline.