erickwendel-contributions-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
erickwendel-contributions-mcp by ErickWendel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 232 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
erickwendel-contributions-mcp · 概述
一个 TypeScript MCP 服务器,提供查询 Erick Wendel 在不同平台上贡献的工具,具有完整的 MCP 功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
erickwendel-contributions-mcp · 使用场景
- 按年份、语言或地点查询技术演讲
- 查找有关特定主题(如 WebXR)的博客文章
- 访问内容统计并生成活动摘要
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
erickwendel-contributions-mcp · 安装
在 Claude Desktop 中快速开始
将此配置添加到 ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "npx",
"args": ["-y", "@erickwendel/contributions-mcp"]
}
}
}本地开发
- 克隆存储库并安装依赖:
git clone https://github.com/ErickWendel/erickwendel-contributions-mcp.git
cd erickwendel-contributions-mcp
npm ci- 添加此配置用于本地开发:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "node",
"args": ["--experimental-strip-types", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts"]
}
}
}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-everything