Token导航 LogoToken导航TokenDH.com
Aminer MCP logo
搜索检索stdio官方级别未说明来源级核验

Aminer MCP

MCP Server

提供免费的学术数据访问服务,支持学者、论文和专利搜索功能,适用于AI工作流中的学术自动化需求。

工具数

5

提示词数

0

GitHub Stars

6

资源数

0
搜索PythonClaudeClaude DesktopClaudeCursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

huanghuoguoguo

提供方

huanghuoguoguo

最后核验

2026/5/17 20:20

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install -e .

详细介绍

AMiner MCP Server

English | 中文

💡 Core Advantage: Free Academic Data Access Currently, AMiner's core search interfaces (Scholar, Paper, and Patent Search) are free to use. This allows you to integrate massive global research data into your AI workflow with zero API costs, making it the most cost-effective solution for academic automation.

This directory provides a Model Context Protocol (MCP) server for accessing AMiner's open platform API.

Quick Install

Installation

pip install -e .

Configuration

Set your AMiner API token as an environment variable:

Windows (PowerShell):

$env:AMINER_TOKEN="your_token_here"

Linux/Mac:

export AMINER_TOKEN="your_token_here"

Or create a .env file in your project root:

AMINER_TOKEN=your_token_here

Usage

Run the server:

python -m aminer_mcp

Or use the command-line shortcut:

aminer-mcp

Features

  • Scholar Search: Find researchers by name or organization.
  • Paper Search: Find papers by title.
  • Patent Search: Search patents by keywords.

Setup

  1. Install Dependencies:
   pip install "mcp[cli]" requests
  1. Get API Token:

- Register at AMiner Open Platform. - Generate your API Key/Token.

  1. Configure Environment:

You can either set the AMINER_TOKEN environment variable manually or use the provided .env file.

Option A: Using .env (Recommended) A .env file has been created for you with your token. The server will automatically load it.

Option B: Manual Environment Variable

Windows (PowerShell):

   $env:AMINER_TOKEN="your_token_here"

Linux/Mac:

   export AMINER_TOKEN="your_token_here"

Running the Server

You can run the server directly or use it with an MCP client (like Claude Desktop or generic IDEs).

Quick Start (Recommended)

For a guided startup experience with environment and dependency checks:

Windows:

.\start_server.ps1

Linux/Mac:

chmod +x start_server.sh
./start_server.sh

Direct Run (stdio)

python server.py

Inspecting with MCP CLI

You can use the MCP CLI to inspect and test the server.

mcp dev server.py

Tools Available

  1. search_scholar:

* name: Scholar name. * org: Organization. * offset: Pagination offset. * size: Result count.

  1. search_paper:

* title: Paper title. * page: Page number. * size: Result count.

  1. search_patent:

* query: Search query. * page: Page number. * size: Result count.

  1. get_papers_by_ids:

* ids: Comma-separated list of paper IDs.

  1. search_paper_pro (0.01 CNY/call):

* Fallback Tool: Use only when strictly necessary. * title, keyword, author, page, size.

API References

Configuration for Cursor IDE

To use this MCP server in Cursor editor, add the following configuration:

Windows (Cursor config path: %APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json):

{
  "mcpServers": {
    "aminer": {
      "command": "python",
      "args": ["-m", "aminer_mcp"],
      "env": {
        "AMINER_TOKEN": ""
      }
    }
  }
}

Linux/Mac:

{
  "mcpServers": {
    "aminer": {
      "command": "python3",
      "args": ["-m", "aminer_mcp"],
      "env": {
        "AMINER_TOKEN": ""
      }
    }
  }
}

Note: Replace `` with your actual AMiner API token from AMiner Open Platform.

Contributing

Issues and Pull Requests are welcome!

Usage as an Agent Skill

This repository also includes an Agent Skill definition, allowing AI agents (like Cursor's Agent) to use AMiner search capabilities directly without a full MCP server setup for local tasks.

Skill Location: .agent/skills/aminer-search/

How it works

The skill wraps the AMiner client code into a simple CLI tool that agents can invoke to perform searches.

Prerequisite

Ensure the AMINER_TOKEN environment variable is set in your terminal or .env file.

Skill Capabilities

  • Paper Search: python .agent/skills/aminer-search/scripts/search_tool.py paper --title "..."
  • Scholar Search: python .agent/skills/aminer-search/scripts/search_tool.py scholar --name "..."
  • Patent Search: python .agent/skills/aminer-search/scripts/search_tool.py patent --query "..."

Agents detecting this skill will automatically know how to use these commands to fetch academic data for you.

License

MIT License

目录标签

目录标签

搜索PythonClaude学术搜索本地部署论文检索专利搜索AI集成免费API

支持客户端

Claude DesktopClaudeCursor

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

api-key

工具数量(toolCount,工具数)

5

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdioapi-key部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP