研究用MCP服务器

研究用MCP服务器

用于研究项目的MCP服务器,支持Notion数据交互。

快速入门指南

  1. 克隆仓库。
  2. Notion Integrations 获取 Notion Token。
  3. 在 Notion 中创建数据库页面并获取数据库 ID。
  4. 创建 .env 文件:
    NOTION_TOKEN=[YOUR_NOTION_TOKEN]
    NOTION_ROOT_DATABASE_ID=[YOUR_NOTION_DATABASE_ID]
    
  5. claude_desktop.json 中添加 MCP 服务器定义:
    {
      "mcpServers": {
        "Research MCP Server": {
          "command": "uv",
          "args": [
            "run",
            "--with", "mcp[cli]",
            "--with", "notion-client",
            "--with", "pydantic",
            "mcp",
            "run",
            "/path/to/research-mcp-server/server.py"
          ]
        }
      }
    }
    
  6. 重启 Claude Desktop Client 启动服务器。
  7. 让 Claude 执行调查并查看结果。