notion-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
notion-mcp-server by awkoy | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 151 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | Notion 集成效率工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
notion-mcp-server · 概述
生产级 Notion MCP 服务器,提供全面管理页面、数据库、评论和用户的工具。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
notion-mcp-server · 使用场景
- 通过自然语言命令创建和管理 Notion 页面和数据库
- 直接从 AI 助手更新任务列表和会议记录
- 自动化 Notion 工作区中的内容创建和组织
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
notion-mcp-server · 安装
安装
- **获取 Notion API 密钥**
- 在 [Notion 开发者](https://www.notion.so/my-integrations) 创建集成 - 复制您的 API 密钥 - 为您的页面启用集成
- **Claude Desktop 集成**
在您的配置目录中创建或编辑 mcp.json 文件:
{
"mcpServers": {
"notion-mcp-server": {
"command": "npx",
"args": ["-y", "notion-mcp-server"],
"env": {
"NOTION_TOKEN": "YOUR_KEY",
"NOTION_PAGE_ID": "YOUR_PAGE_ID"
}
}
}
}- **Cursor 集成**
在您的项目目录中创建或编辑 .cursor/mcp.json 文件:
{
"mcpServers": {
"notion-mcp-server": {
"command": "env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx",
"args": ["-y", "notion-mcp-server"]
}
}
}- **通用使用**
``bash env NOTION_TOKEN=YOUR_KEY NOTION_PAGE_ID=YOUR_PAGE_ID npx -y notion-mcp-server ``
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