From personalized digests to open-source extensibility — built for the way you actually consume information.
Every morning, Claude generates a styled interactive HTML digest tailored to your subscriptions. It's not a template — it's freshly generated each time based on your preferences and the latest content.
Async closures hit stable in Rust 1.94
Eliminating a major pain point for async code.
Claude 4.5 Opus released with 1M context
The most capable model yet, now generally available.
The MCP App UI renders an interactive dashboard directly alongside your conversation. Filter by topic, expand articles, track what you've read — all without leaving Claude Desktop.
New MCP transport spec draft
modelcontextprotocol.io · 3 min
Tokio 2.0 roadmap published
tokio.rs · 5 min
Configure delivery with a single sentence. Claude calls the tools on your schedule — loading your preferences, fetching your feed, generating the digest, and marking items as read. You just open Claude and it's there.
No settings page, no checkboxes. Just tell Claude what you want. Subscribe to topics, adjust your display, change your theme — all through natural conversation.
Ferrisletter is an open-source MCP newsletter SDK. The connector system is pluggable — anyone can build a connector to bring in content from any source. Published on crates.io, MIT licensed.
pub trait Connector: Send + Sync { async fn fetch_items(&self) -> Result<Vec<Item>>; fn source_name(&self) -> &str; }