obsidian-mcp-tools vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
obsidian-mcp-tools by jacksteamdev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 811 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具AI / LLM 工具知识库 / RAG | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
obsidian-mcp-tools · 概述
连接 Obsidian 笔记库与 Claude 等 AI 助手的 MCP 服务器,支持语义搜索和模板执行功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
obsidian-mcp-tools · 使用场景
- AI 助手能够搜索和分析存储在 Obsidian 中的个人知识库
- 通过自然语言命令执行 Obsidian Templater 模板
- 将 AI 工作流与您的笔记系统集成以提高生产力
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
obsidian-mcp-tools · 安装
安装
- 从 Obsidian 的社区插件安装此插件
- 在 Obsidian 设置中启用插件
- 打开插件设置
- 点击"安装服务器"以下载并配置 MCP 服务器
对于 Claude Desktop 配置,插件会自动设置必要的 MCP 服务器连接。服务器二进制文件使用 SLSA 验证进行安全验证。
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