everything vs openalex-research-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | openalex-research-mcp by oksure | |
|---|---|---|
| Stars | ★ 85,748 | ★ 26 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphSearch |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openalex-research-mcp · Summary
MCP server providing access to 240M+ scholarly works through 31 specialized tools for research analysis and literature reviews.
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
openalex-research-mcp · Use cases
- Conduct systematic literature reviews with citation network analysis
- Track research trends and evolution in specific academic fields
- Identify leading researchers and institutions in specific domains
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-everythingopenalex-research-mcp · Install
Installation
Option 1: Install from npm (Recommended)
# Install globally
npm install -g openalex-research-mcp
# Or use directly with npx (no installation needed)
npx openalex-research-mcpOption 2: Install from source
# Clone the repository
git clone https://github.com/oksure/openalex-research-mcp.git
cd openalex-research-mcp
# Install dependencies
npm install
# Build the TypeScript code
npm run buildClaude Desktop Configuration
Add to your Claude Desktop config file:
**MacOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"openalex": {
"command": "npx",
"args": ["-y", "openalex-research-mcp"],
"env": {
"OPENALEX_EMAIL": "your.email@example.com"
}
}
}
}