一个提供从The Verge的RSS源获取和搜索新闻工具的MCP服务器。
<a href="https://glama.ai/mcp/servers/n6lbwdnbxa"> <img width="380" height="200" src="https://gips3.baidu.com/it/u=1525846554,2999933127&fm=3081&app=3081&f=PNG?w=760&h=400" alt="The Verge新闻MCP服务器" /> </a># 克隆仓库
git clone https://github.com/manimohans/verge-news-mcp.git
cd verge-news-mcp
# 安装依赖
npm install
# 构建项目
npm run build
npm start
打开你的Claude for Desktop应用配置文件:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json添加以下配置:
{
"mcpServers": {
"verge-news": {
"command": "node",
"args": ["/绝对路径/to/verge-news-mcp/build/index.js"]
}
}
}
你也可以使用这个MCP服务器与Smithery,它允许你轻松地分享和使用MCP服务器:
npm install -g @anthropic-ai/smithery
smithery use https://github.com/manimohans/verge-news-mcp
此仓库包括用于Smithery的必要配置文件:
Dockerfile: 定义如何构建MCP服务器的Docker容器smithery.yaml: 配置MCP服务器以供Smithery使用,包括其功能有关更多关于Smithery配置的信息,请参阅Smithery文档。
获取The Verge在过去24小时内发布的最新新闻文章。
示例查询:"今天The Verge有什么新闻?"
获取The Verge在过去7天内发布的新闻文章。
示例查询:"给我看The Verge过去一周的新闻。"
注意: 此工具每次使用时会从过去一周中随机选择10篇新闻,提供多样性。
按特定关键词搜索新闻文章。
参数:
keyword: 要搜索的词days(可选): 回溯的天数(默认值:30)示例查询:"查找The Verge关于AI的新闻文章。"
# 在开发模式下运行
npm run dev
ISC