An MCP server that aggregates real-time cryptocurrency news from multiple RSS feeds, helping AI agents make informed decisions in a fast-paced market. - Feed Retrieval: Fetches latest entries from specified RSS feeds, formatting them as Markdown with plain-text summaries. - Keyword Filtering: Filters feeds by keyword in descriptions or categories. - OPML Support: Import feed list from a local OPML
Add this skill
npx mdskills install kukapay/crypto-rss-mcpProvides curated crypto RSS feeds with OPML support and clear tool descriptions
1# Crypto RSS MCP23An MCP server that aggregates real-time cryptocurrency news from multiple RSS feeds, helping AI agents make informed decisions in a fast-paced market.45<a href="https://glama.ai/mcp/servers/@kukapay/crypto-rss-mcp">6 <img width="380" height="200" src="https://glama.ai/mcp/servers/@kukapay/crypto-rss-mcp/badge" alt="crypto-rss-mcp MCP server" />7</a>891011121314## Features1516- **Feed Retrieval**: Fetches latest entries from specified RSS feeds, formatting them as Markdown with plain-text summaries.17- **Keyword Filtering**: Filters feeds by keyword in descriptions or categories.18- **OPML Support**: Import feed list from a local OPML file provided by [Chainfeeds](https://raw.githubusercontent.com/chainfeeds/RSSAggregatorforWeb3/main/RAW.opml).19- **LLM Integration**: Includes a prompt for analyzing feed content to summarize key points and identify cryptocurrency market trends.2021## Prerequisites2223- **Python**: Version 3.10.24- **uv**: Package and dependency manager for Python projects.2526## Installation27281. **Clone the Repository**:29 ```bash30 git clone https://github.com/kukapay/crypto-rss-mcp.git31 cd crypto-rss-mcp32 ```33342. **Install Dependencies**:35 Add the required dependencies using `uv`:36 ```bash37 uv sync38 ```3940## Usage4142### Running the Server4344Start the FastMCP server in development mode:45```bash46uv run mcp dev cli.py47```4849### Installing to Claude Desktop5051Install the server as a Claude Desktop application:52```bash53uv run mcp install cli.py --name "Crypto RSS Reader"54```5556Configuration file as a reference:5758```json59{60 "mcpServers": {61 "Crypto RSS Reader": {62 "command": "uv",63 "args": [ "--directory", "/path/to/crypto-rss-mcp", "run", "crypto-rss-mcp" ]64 }65 }66}67```6869### Available Tools7071#### `get_crypto_rss_list`7273Lists available RSS feeds from an OPML file, optionally filtered by keyword.7475**Parameters**:76- `keyword` (str, optional): Filter feeds where the keyword appears in the description or category (case-insensitive).77- `opml_file` (str, optional): Path to a local OPML file (defaults to `"RAW.opml"`).7879**Example**:80> List available cryptocurrency RSS feeds8182**Output**:83```84Available Cryptocurrency RSS Feeds:8586Category: 05. Research/VC87URL: https://b10c.me/feed.xml88Description: 0xB10C's Blog: German Bitcoin freelance developer on 0xB10C's Blog8990Category: 03. Media91URL: https://bitcoinmagazine.com/feed92Description: Bitcoin Magazine93...94```9596#### `get_rss_feed`9798Fetches and formats the latest 10 entries from a specified RSS feed as Markdown.99100**Parameters**:101- `feed_url` (str): The URL of the RSS feed to fetch.102103**Example**:104> Read this RSS feed: https://blog.0xproject.com/feed105106**Output**:107```108# Feed: 0x Blog - Medium109110## Entry 1111- **Title**: Introducing 0x Protocol v4112- **Link**: [https://blog.0xproject.com/...](https://blog.0xproject.com/...)113- **Published**: Mon, 28 Apr 2025 10:00:00 GMT114- **Summary**: The 0x Protocol v4 brings improved efficiency...115116 ### Why This Matters117 This update enhances...118...119```120121### Available Prompts122123#### `analyze_rss_feed`124125Creates a prompt for analyzing RSS feed content, summarizing key points and identifying cryptocurrency market trends.126127**Parameters**:128- `url` (str): The RSS feed URL to analyze.129130**Example**:131> Analyze the content of this RSS feed https://blog.0xproject.com/feed, summarize the key points, and identify any trends in the cryptocurrency market."132133## License134135This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Full transparency — inspect the skill content before installing.