限时免费、限时免费、限时免费。目前 AMiner 的基础查询接口(包含学者、论文、专利搜索)均处于免费开放阶段。这意味着您可以零成本将海量学术大数据接入 AI 助手,无需支付昂贵的 API 费用即可实现一键学术检索,是目前极具性价比的学术数据源方案。
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"aminer": {
"env": {
"AMINER_TOKEN": "<YOUR_AMINER_TOKEN>"
},
"args": [
"-m",
"aminer_mcp"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
💡 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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / education
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Aminer Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
💡 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.
pip install -e .
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
Run the server:
python -m aminer_mcp
Or use the command-line shortcut:
aminer-mcp
Install Dependencies:
pip install "mcp[cli]" requests
Get API Token:
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"
You can run the server directly or use it with an MCP client (like Claude Desktop or generic IDEs).
For a guided startup experience with environment and dependency checks:
Windows:
.\start_server.ps1
Linux/Mac:
chmod +x start_server.sh
./start_server.sh
python server.py
You can use the MCP CLI to inspect and test the server.
mcp dev server.py
search_scholar:
name: Scholar name.org: Organization.offset: Pagination offset.size: Result count.search_paper:
title: Paper title.page: Page number.size: Result count.search_patent:
query: Search query.page: Page number.size: Result count.get_papers_by_ids:
ids: Comma-separated list of paper IDs.search_paper_pro (0.01 CNY/call):
title, keyword, author, page, size.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": "<YOUR_AMINER_TOKEN>"
}
}
}
}
Linux/Mac:
{
"mcpServers": {
"aminer": {
... [View full README on GitHub](https://github.com/huanghuoguoguo/aminer-mcp#readme)