{
"mcpServers": {
"swift-netnewswire-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Read-only MCP server for NetNewsWire
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 61 days ago. 2 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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