Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
analyze_rss_feed | Create a prompt for analyzing RSS feed content. |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_rss_feed | Retrieve the content of the specified RSS feed.
Parameters:
feed_url (str): The URL of the RSS feed to fetch (e.g., 'https://cointelegraph.com/rss').
ctx (Context, optional): MCP context for logging or progress reporting.
Returns:
str: A formatted Markdown string containing the feed title and up to 10 latest entries with titles, links, publication dates, and summaries converted from HTML to plain text. |
get_crypto_rss_list | Retrieve a list of available cryptocurrency RSS feeds from a local or remote OPML file, optionally filtered by keyword.
Parameters:
keyword (str, optional): Filter feeds where the keyword appears in the description or category (case-insensitive).
opml_file (str, optional): Path to a local OPML file to read feeds from. If not provided, fetches from the remote OPML URL.
Returns:
str: A formatted string listing each RSS feed URL, its description, and category, parsed from the OPML file. |