ultimate_mcp_server vs modular-context-obsidian-plugin
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | modular-context-obsidian-plugin by klemensgc | |
|---|---|---|
| Stars | ★ 149 | ★ 88 |
| 30天用量 | — | — |
| 综合分 | 85 | 47 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | AI / LLM 工具效率工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
modular-context-obsidian-plugin · 概述
Obsidian 插件,提供 Google Workspace 的 MCP 工具并将您的保险库转换为 LLM 原生知识库。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
modular-context-obsidian-plugin · 使用场景
- 使用 Claude Code 自动化收件箱管理和邮件跟进
- 通过分析日历事件和相关文档创建会议准备材料
- 从 Obsidian 笔记构建和维护结构化的 LLM 可访问知识库
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_servermodular-context-obsidian-plugin · 安装
通过 BRAT 安装(推荐)
- 从 Obsidian 社区插件安装 BRAT
- 按
Cmd+P并选择 "BRAT: Add a beta plugin" - 输入
klemensgc/modular-context-obsidian-plugin
手动安装
- 从 GitHub 下载最新发布文件
- 将它们复制到
<vault>/.obsidian/plugins/modular-context/ - 在设置 → 社区插件中启用该插件
Claude Desktop 配置
添加到您的 config.json 中:
{
"mcpServers": {
"modular-context": {
"command": "node",
"args": ["~/.modular-context/mcp-google/dist/index.js"]
}
}
}