The Verge 新闻
STDIO从The Verge获取并搜索新闻的服务器
从The Verge获取并搜索新闻的服务器
An MCP server that provides tools to fetch and search news from The Verge's RSS feed.
# Clone the repository git clone https://github.com/manimohans/verge-news-mcp.git cd verge-news-mcp # Install dependencies npm install # Build the project npm run build
npm start
Install Claude for Desktop
Open your Claude for Desktop App configuration at:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{ "mcpServers": { "verge-news": { "command": "node", "args": ["/absolute/path/to/verge-news-mcp/build/index.js"] } } }
You can also use this MCP server with Smithery, which allows you to easily share and use MCP servers:
npm install -g @anthropic-ai/smithery
smithery use https://github.com/manimohans/verge-news-mcp
This repository includes the necessary configuration files for Smithery:
Dockerfile
: Defines how to build the Docker container for the MCP serversmithery.yaml
: Configures the MCP server for Smithery, including its capabilitiesFor more information about Smithery configuration, see the Smithery documentation.
Fetches the latest news articles from The Verge published in the last 24 hours.
Example query: "What's in the news today from The Verge?"
Fetches news articles from The Verge published in the last 7 days.
Example query: "Show me The Verge's news from the past week."
Note: This tool randomly selects 10 news items from the past week, providing variety each time it's used.
Searches for news articles containing a specific keyword.
Parameters:
keyword
: The term to search fordays
(optional): Number of days to look back (default: 30)Example query: "Find news articles about AI from The Verge."
# Run in development mode npm run dev
ISC