mcp-starter-template vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-starter-template by Git-Fg | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 36 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
mcp-starter-template · 概述
一个用于创建自主 MCP 服务器的 TypeScript 模板,采用工具优先架构。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-starter-template · 使用场景
- 快速构建具有适当工具定义的新 MCP 服务器
- 创建需要详细描述工具的自主代理功能
- 构建需要运行时启用/禁用功能的 MCP 服务器
- 为代理编排开发具有全面元数据的工具
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-starter-template · 安装
安装
- **克隆仓库**
git clone https://github.com/Git-Fg/mcp-starter-template.git
cd mcp-starter-template- **安装依赖**
pnpm install- **构建服务器**
pnpm run build- **运行测试**
pnpm testClaude Desktop 集成
将以下内容添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"mcp-starter-template": {
"command": "node",
"args": ["dist/index.js"]
}
}
}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