- Home
- MCP servers
- RSS to Markdown
RSS to Markdown
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 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": {
"taweili-mcp-rss-md": {
"command": "node",
"args": [
"rss-to-md-server.js"
]
}
}
}This RSS to Markdown MCP Server provides a simple way to convert RSS feeds into Markdown text that you can publish, archive, or process further. It runs locally or in your MCP environment so you can integrate feed content into your workflows with minimal setup.
How to use
You can run this server locally and expose its functionality to an MCP client. Use the convert_rss tool to transform an RSS feed at a given URL into Markdown. Optionally, supply an output path to save the Markdown file for later use.
How to install
Prerequisites you need before starting:
- Install Node.js (LTS version recommended)
- Ensure npm is available with your Node installation
Then follow these steps to set up and run the server locally:
- Clone the project directory or copy the server files to your workspace
- Install dependencies with npm install
- Start the server locally using the designated command in the configuration
Notes on configuration and startup
The MCP server is designed to run as a local (stdio) server. The following command configuration shows how to start it in your environment. You can add this server to your MCP configuration to enable the convert_rss tool in MCP clients.
{
"mcpServers": {
"rss_to_md": {
"command": "node",
"args": ["rss-to-md-server.js"]
}
}
}
Available tools
convert_rss
Converts an RSS feed to Markdown format. Requires a url parameter for the RSS feed and an optional outputPath to save the Markdown output.