Install
openclaw skills install openclaw-minifluxManage RSS feeds and entries on a Miniflux instance. Handles requests like "show my unread articles", "list my feeds", "rename this category", "unsubscribe from this feed", "import my OPML", "mark these entries as read", or "bookmark this article". Uses openclaw-miniflux-mcp for all operations.
openclaw skills install openclaw-minifluxProvides access to a Miniflux RSS reader instance through 13 read tools and 10 write tools. Agents can browse feeds, search entries by status or date, read specific articles, check categories, and (if not in read-only mode) create/update/delete feeds and categories, import OPML, mark entries as read, and toggle bookmarks.
openclaw-miniflux-mcp binaryDownload the latest binary for your platform from GitHub Releases:
| Platform | Binary |
|---|---|
| Linux x86_64 | openclaw-miniflux-mcp-x86_64-unknown-linux-gnu |
| Linux ARM64 | openclaw-miniflux-mcp-aarch64-unknown-linux-gnu |
| macOS x86_64 | openclaw-miniflux-mcp-x86_64-apple-darwin |
| macOS ARM64 | openclaw-miniflux-mcp-aarch64-apple-darwin |
Or install via Cargo:
cargo install openclaw-miniflux-mcp
Add the MCP server to your client configuration:
With API token (recommended):
{
"mcpServers": {
"miniflux": {
"command": "/path/to/openclaw-miniflux-mcp",
"args": [],
"env": {
"MINIFLUX_URL": "http://localhost:8080",
"MINIFLUX_API_TOKEN": "<your-api-token>"
}
}
}
}
With username/password:
{
"mcpServers": {
"miniflux": {
"command": "/path/to/openclaw-miniflux-mcp",
"args": [],
"env": {
"MINIFLUX_URL": "http://localhost:8080",
"MINIFLUX_USERNAME": "<username>",
"MINIFLUX_PASSWORD": "<password>"
}
}
}
}
Read-only mode (disables write tools):
{
"mcpServers": {
"miniflux": {
"command": "/path/to/openclaw-miniflux-mcp",
"args": ["--read-only"],
"env": {
"MINIFLUX_URL": "http://localhost:8080",
"MINIFLUX_API_TOKEN": "<your-api-token>"
}
}
}
}
The user will need to:
MINIFLUX_URL with their Miniflux instance URLminiflux_get_feeds to see all subscriptionsminiflux_get_feed_entries with a feed ID to see its entriesminiflux_get_entry to read a specific articleCall miniflux_get_entries with filters:
status: "unread", "read", or "removed"starred: true for bookmarked entriesafter / before: Unix timestamps for date rangeslimit: Number of results (default varies, recommend 20)order: "published_at" and direction: "desc" for newest firstminiflux_get_entries with status: "unread", limit: 20miniflux_get_entryminiflux_update_entry_status with status: "read"miniflux_toggle_bookmarkminiflux_discover_subscription with a website URL to find available feedsminiflux_create_category to create a new categoryminiflux_create_feed with the feed URL and category ID to subscribeminiflux_update_feed with feed ID and any fields to change (title, category_id, feed_url, site_url, user_agent)miniflux_delete_feed with feed ID to unsubscribeminiflux_refresh_feed with feed ID to fetch new entries nowminiflux_get_categories to see all categoriesminiflux_create_category with a titleminiflux_update_category with category ID and new titleminiflux_delete_category with category ID (feeds move to default category)miniflux_export_opml to get all feeds as OPML XMLminiflux_import_opml with an OPML XML string to bulk-add feeds