Notion集成MCP服务器
为Notion API提供工具集合的MCP服务器,支持大语言模型无缝交互。
快速入门
Notion集成设置
在使用前,需创建Notion集成并授权页面权限,请参考Notion集成文档。
使用方法
配合Cursor使用
- 打开Cursor设置。
- 进入Features,找到“MCP Servers”。
- 点击“Add new MCP server”。
- 输入名称,选择“command”类型,并填写以下命令(替换
<notion_integration_token>
): npx -y @orbit-logistics/notion-mcp-server -t <notion_integration_token>
配合Claude Desktop使用
编辑claude_desktop_config.json
文件,添加以下配置(替换<notion_integration_token>
):
{
"mcpServers": {
"notion": {
"command": "npx",
"args": [
"-y",
"mcp-sequential-thinking-test",
"-t",
"<notion_integration_token>"
]
}
}
}
更多详情请参阅README。