askimo vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
askimo by askimo-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 110 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Kotlin | TypeScript |
| 最近提交 | 本月 | 本月 |
askimo · 概述
一款桌面AI代理平台,集成MCP工具,支持多种AI模型实现本地化工作流。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
askimo · 使用场景
- 在桌面工作流中连接MCP服务器以增强AI工具能力
- 使用本地RAG搜索和聊天个人文档,无需上传到云端
- 构建多步AI Plans来自动化复杂推理任务并生成交付物
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
askimo · 安装
安装 Askimo
- 从 [GitHub releases](https://github.com/askimo-ai/askimo/releases) 下载适合您平台的二进制文件(macOS、Windows 或 Linux)
- 安装并打开应用程序
- 通过粘贴 API 密钥或连接到本地模型添加 AI 提供商
MCP 配置
- 转到设置 > MCP 工具
- 添加新的 MCP 服务器,包括:
- 名称(如 "文件浏览器") - 连接类型(stdio 或 HTTP) - 命令或 URL - 参数(如果需要)
- 启用服务器并选择要使用的工具
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