filesystem vs mcp-notion-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | mcp-notion-server by suekou | |
|---|---|---|
| Stars | ★ 85,748 | ★ 892 |
| 30天用量 | — | — |
| 综合分 | 77 | 55 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | Notion 集成效率工具知识库 / RAG |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-notion-server · 概述
连接 Notion 与 MCP 兼容客户端的 MCP 服务器,使 AI 智能体能查找、读取、查询和更新 Notion 工作区。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-notion-server · 使用场景
- AI 助手阅读和总结 Notion 文档页面
- 自动化创建和更新 Notion 数据库中的内容
- 使用数据源资源管理器等 MCP 应用程序构建自定义 Notion 界面
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 中安装。
mcp-notion-server · 安装
快速开始
将此服务器添加到 Claude Desktop 等 MCP 主机:
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@suekou/mcp-notion-server"],
"env": {
"NOTION_API_TOKEN": "your-integration-token"
}
}
}
}设置指南
- 在 [Notion 集成仪表板](https://www.notion.so/profile/integrations) 创建 Notion 集成
- 配置所需功能(根据需要选择读取、插入、更新内容)
- 向特定页面/数据库授予内容访问权限
- 复制内部集成令牌作为 NOTION_API_TOKEN