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.
The official MCP server implementation for the Perplexity API Platform
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
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 by ID; optional format (html/text) and max_content_length to bound the body |
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. Each tool returns machine-readable
structuredContent (with a declared outputSchema) alongside the human-readable
markdown.
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"
}
}
}
Or, with the Claude Code CLI:
claude mcp add netnewswire /path/to/.build/release/netnewswire-mcp
NetNewsWire keeps its databases inside a macOS app container, which the system
protects with privacy controls (TCC). The server can only read it if the process
that launches it has Full Disk Access — otherwise it exits at startup with
Operation not permitted.
Grant FDA to whichever app hosts your MCP client, then restart that app:
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.
articles (the old authors/authorsLookup tables are gone); this server reads the current layout.MIT