Read-only MCP server for NetNewsWire
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"netnewswire": {
"command": "/path/to/netnewswire-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A read-only Model Context Protocol (MCP) server for NetNewsWire, the open-source RSS reader for Mac.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Swift Netnewswire Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A read-only Model Context Protocol (MCP) server for NetNewsWire, the open-source RSS reader for Mac.
Gives AI assistants like Claude access to your NetNewsWire feeds, articles, and search index.
| Tool | Description |
|---|---|
list_accounts | List available NNW accounts (OnMyMac, iCloud, etc.) |
list_feeds | List subscribed feeds (parsed from OPML) |
list_starred_articles | Starred articles with optional feed filter and limit |
list_recent_articles | Recent articles by arrival date |
get_article | Full article content (HTML/text, authors, dates) by ID |
search_articles | Full-text search using NNW's FTS4 index |
get_article_count | Total, starred, and unread counts |
All tools are read-only. Nothing is modified.
swift build -c release
The binary will be at .build/release/netnewswire-mcp.
Add to your Claude Code MCP config (~/.claude/claude_desktop_config.json or similar):
{
"mcpServers": {
"netnewswire": {
"command": "/path/to/netnewswire-mcp"
}
}
}
The server reads NetNewsWire's SQLite databases directly (read-only mode) from:
~/Library/Containers/com.ranchero.NetNewsWire-Evergreen/Data/Library/Application Support/NetNewsWire/Accounts/
It auto-discovers all accounts and their databases on startup. Feed lists are parsed from each account's Subscriptions.opml file. Full-text search uses NNW's built-in FTS4 search index.
MIT