aicode-toolkit vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
aicode-toolkit by AgiFlow | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 156 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
aicode-toolkit · 概述
MCP 服务器工具包,为 AI 代理提供项目脚手架、代码指导和设计系统发现功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
aicode-toolkit · 使用场景
- 从预定义模板生成新项目和功能
- 将一致的设计模式和规则应用于代码更改
- 发现并实现 UI 主题、CSS 类和组件
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
aicode-toolkit · 安装
安装
- 为你的项目通过 npm 安装:
npx @agiflowai/aicode-toolkit init- 在 AI 代理设置中配置 MCP。对于 Claude Code,添加到
.mcp.json:
{
"mcpServers": {
"scaffold-mcp": {
"command": "npx",
"args": ["-y", "@agiflowai/scaffold-mcp", "mcp-serve", "--admin-enable"]
},
"architect-mcp": {
"command": "npx",
"args": ["-y", "@agiflowai/architect-mcp", "mcp-serve", "--admin-enable"]
},
"style-system": {
"command": "npx",
"args": ["-y", "@agiflowai/style-system", "mcp-serve"]
}
}
}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