
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
mcp-server-rsshub
Advanced tools
An MCP server implementation that integrates the RSSHub API with Claude following the Model Context Protocol (MCP) standard. This server allows Claude to fetch and parse RSS feeds from across the web.
An MCP server implementation that integrates the RSSHub API with Claude following the Model Context Protocol (MCP) standard. This server allows Claude to fetch and parse RSS feeds from across the web.
RSSHUB_BASE_URL
Install globally:
npm install -g mcp-server-rsshub
Or use directly with npx:
npx mcp-server-rsshub
Here are the most reliable prompts to use with Claude:
Can you fetch recent tweets from @elonmusk and summarize them?
Get me the latest release information for the React repository on GitHub using RSSHub.
What are the top stories on HackerNews right now?
Fetch the latest tech news from TechCrunch and organize it by category.
The server provides the following key tools:
openapi-getTwitterUserTimeline
: Get tweets from a Twitter/X useropenapi-getGitHubRelease
: Get GitHub repository releasesopenapi-getHackerNews
: Get HackerNews front pageopenapi-getTechCrunch
: Get TechCrunch newsrsshub-get-schema
: Get the input schema for any toolrsshub-get-routes
: Get all available routes from RSSHubrsshub-twitter-user
: Convenient access to Twitter user timelines// Get recent tweets from a user
const tweets = await callMCPTool("openapi-getTwitterUserTimeline", {
username: "anthropic",
format: "json"
});
// Get GitHub releases for a repository
const releases = await callMCPTool("openapi-getGitHubRelease", {
owner: "facebook",
repo: "react",
format: "json"
});
// Get HackerNews front page
const news = await callMCPTool("openapi-getHackerNews", {
format: "json"
});
// Get TechCrunch news
const techNews = await callMCPTool("openapi-getTechCrunch", {
format: "json"
});
For the most reliable results, use these example prompts:
Fetch the latest tweets from @elonmusk and summarize the key topics he's discussing.
What are the latest releases for the React repository on GitHub? Please check using RSSHub.
Give me the top 5 stories from HackerNews right now and summarize each one in a sentence.
What are the latest tech news headlines from TechCrunch? Please organize them by category.
{
"mcpServers": {
"rsshub": {
"command": "npx",
"args": [
"mcp-server-rsshub"
]
}
}
}
{
"mcpServers": {
"rsshub": {
"command": "npx",
"args": [
"mcp-server-rsshub"
]
}
}
}
RSSHUB_BASE_URL
: Set a custom RSSHub instance (default is https://rsshub.pseudoyu.com)Example:
export RSSHUB_BASE_URL=https://rsshub.app
npx mcp-server-rsshub
If you encounter issues:
rsshub-twitter-user
tool which has additional fallback mechanismsMIT
FAQs
An MCP server implementation that integrates the RSSHub API with Claude following the Model Context Protocol (MCP) standard. This server allows Claude to fetch and parse RSS feeds from across the web.
The npm package mcp-server-rsshub receives a total of 4 weekly downloads. As such, mcp-server-rsshub popularity was classified as not popular.
We found that mcp-server-rsshub demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.