obsidian-cli-rest vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
obsidian-cli-rest by dsebastien | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 14 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具知识库 / RAG开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
obsidian-cli-rest · 概述
将 Obsidian CLI 命令转换为 HTTP API 和 MCP 服务器,实现自动化和 AI 助手集成。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
obsidian-cli-rest · 使用场景
- 从脚本或应用程序自动化笔记创建和修改
- 让 Claude 或 ChatGPT 等 AI 助手与 Obsidian 笔记库交互
- 通过标准 HTTP 请求将 Obsidian 与现有工作流集成
- 以编程方式管理 Obsidian 插件、主题和工作区
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
obsidian-cli-rest · 安装
安装
- 在 Obsidian 中,进入 **设置 → 社区插件**
- 如已启用,请禁用**限制模式**
- 搜索 **REST and MCP server**,安装并启用它
Claude Desktop 配置
添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"obsidian": {
"command": "http",
"args": ["http://127.0.0.1:27124/mcp"],
"env": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}配置
- 从 **设置 > REST and MCP server > 安全** 复制您的 API 密钥
- 服务器会自动在端口 27124 启动
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