everything vs hacker-mcp-server-POC
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | hacker-mcp-server-POC by sumitsk-simform | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 77 | 33 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 网页抓取AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 5 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
hacker-mcp-server-POC · 概述
一个轻量级的MCP服务器,将Hacker News数据作为工具暴露,用于获取新闻、详情和用户资料。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
hacker-mcp-server-POC · 使用场景
- 将Hacker News数据集成到AI助手,提供最新的科技资讯
- 构建分析热门故事或用户交互的自定义应用程序
- 创建展示MCP与外部API集成教育工具
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythinghacker-mcp-server-POC · 安装
# 克隆仓库
git clone <repository-url>
cd hacker-mcp-server-POC
# 安装依赖
npm install
# 构建TypeScript到JavaScript
npm run build
# 运行服务器
node build/index.js对于Claude Desktop,添加到claude_desktop_config.json:
{
"mcpServers": {
"hacker-news": {
"command": "node",
"args": ["/path/to/hacker-mcp-server-POC/build/index.js"]
}
}
}