aica vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
aica by dotneet | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 36 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具GitHub 集成 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
aica · 概述
aica 是一款开源的 AI 代码分析工具,支持 MCP 服务器功能,可进行代码审查和分析。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
aica · 使用场景
- 在 CI/CD 管道中自动执行代码审查
- AI 辅助代码重构和分析
- 生成提交信息和拉取请求摘要
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
aica · 安装
# 首先安装 bun 再构建 aica
# 官方安装文档: https://bun.sh/docs/installation#installing
git clone https://github.com/dotneet/aica.git
cd aica
bun install
bun run build
cp ./dist/aica /usr/local/bin
# 配置 MCP 服务器
echo '[mcp]
setupFile = "mcp.json"' > ~/.config/aica/aica.toml
# 要在 Claude Desktop 中使用,请添加到 ~/.config/claude-desktop/config.json:
{
"mcpServers": {
"aica": {
"command": "aica",
"args": ["mcp", "server"]
}
}
}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