Google Scholar MCP 服务

Google Scholar MCP 服务

通过MCP接口,使AI助手能够搜索和访问Google Scholar论文。

快速开始

  1. 克隆仓库: git clone https://github.com/JackKuo666/Google-Scholar-MCP-Server.git cd Google-Scholar-MCP-Server
  2. 安装依赖: pip install -r requirements.txt
  3. 启动服务: python google_scholar_server.py
  4. 使用示例(Python):
    • 搜索关键词: result = await mcp.use_tool("search_google_scholar_key_words", {"query": "人工智能伦理", "num_results": 5})
    • 高级搜索: result = await mcp.use_tool("search_google_scholar_advanced", {"query": "机器学习", "author": "Hinton", "year_range": [2020, 2023], "num_results": 3})
    • 获取作者信息: result = await mcp.use_tool("get_author_info", {"author_name": "Geoffrey Hinton"})