- Home
- MCP servers
- Crypto RSS
Crypto RSS
- python
13
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kukapay-crypto-rss-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/crypto-rss-mcp",
"run",
"crypto-rss-mcp"
]
}
}
}Crypto RSS MCP is a server that aggregates real-time cryptocurrency news from multiple RSS feeds, formats entries as Markdown with plain-text summaries, and provides prompts to analyze feed content for market trends. It helps you keep AI agents informed with concise, up-to-date feed data and targeted keyword filtering.
How to use
You interact with this MCP server through an MCP client or tooling that can start and manage MCP servers. Use the provided commands to run the server in development mode, install it as a desktop application, and access a configuration reference for connecting to the server. You can list available RSS feeds, fetch the latest entries from a feed, and run analysis prompts to summarize key points and trends.
How to install
Prerequisites include Python 3.10 and the uv package manager for Python projects.
# Step 1: Clone the repository
git clone https://github.com/kukapay/crypto-rss-mcp.git
cd crypto-rss-mcp
# Step 2: Install dependencies using uv
uv sync
# Step 3: Run the MCP server in development mode
uv run mcp dev cli.py
# Optional: Install as a Claude Desktop application
uv run mcp install cli.py --name "Crypto RSS Reader"
Additional notes
Configuration can be defined for MCP clients by listing the MCP servers in a configuration block. The following example shows how to expose a local MCP server via a standard CLI invocation using uv. It starts the Crypto RSS MCP with the provided directory path and a named server.
{
"mcpServers": {
"Crypto RSS Reader": {
"command": "uv",
"args": [ "--directory", "/path/to/crypto-rss-mcp", "run", "crypto-rss-mcp" ]
}
}
}
Available tools
get_crypto_rss_list
Lists available RSS feeds from an OPML file, optionally filtered by keyword. You can specify a keyword to filter feeds by description or category.
get_rss_feed
Fetches the latest 10 entries from a given RSS feed URL and formats them as Markdown with titles, links, publication dates, and summaries.
analyze_rss_feed
Generates a prompt to analyze RSS feed content, summarize key points, and identify trends in the cryptocurrency market.