modular-context-obsidian-plugin vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
modular-context-obsidian-plugin by klemensgc | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 88 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具沟通协作 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
modular-context-obsidian-plugin · 概述
Obsidian 插件,提供 Google Workspace 的 MCP 工具并将您的保险库转换为 LLM 原生知识库。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
modular-context-obsidian-plugin · 使用场景
- 使用 Claude Code 自动化收件箱管理和邮件跟进
- 通过分析日历事件和相关文档创建会议准备材料
- 从 Obsidian 笔记构建和维护结构化的 LLM 可访问知识库
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
modular-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"]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。