aminer-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
aminer-mcp by huanghuoguoguo | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
aminer-mcp · Summary
AMiner MCP server provides free access to academic databases (scholars, papers, patents) via the Model Context Protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aminer-mcp · Use cases
- Enable AI research assistants to access academic literature for comprehensive literature reviews
- Automate citation analysis and academic profile building in research workflows
- Support patent research and intellectual property analysis with zero API cost
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
aminer-mcp · Install
Installation
- Install dependencies:
pip install -e .- Get API token from [AMiner Open Platform](https://www.aminer.cn/open/board?tab=control)
- Set environment variable:
export AMINER_TOKEN="your_token_here"- Run server:
python -m aminer_mcpClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"aminer": {
"command": "python",
"args": ["-m", "aminer_mcp"],
"env": {
"AMINER_TOKEN": "<YOUR_TOKEN>"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything