everything vs MCP-wolfram-alpha
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MCP-wolfram-alpha by SecretiveShell | |
|---|---|---|
| Stars | ★ 85,748 | ★ 75 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP-wolfram-alpha · Summary
MCP server connecting to Wolfram Alpha API for computational intelligence and queries.
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
MCP-wolfram-alpha · Use cases
- Perform mathematical calculations and equations through Wolfram Alpha
- Access computational knowledge and data analysis from Wolfram's knowledge engine
- Enhance chat assistants with scientific and computational capabilities
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-everythingMCP-wolfram-alpha · Install
Installation
- Install the required dependencies (Python and uv):
``bash pip install uv ``
- Clone the repository:
``bash git clone https://github.com/SecretiveShell/MCP-wolfram-alpha.git cd MCP-wolfram-alpha ``
- Set your Wolfram Alpha API key as an environment variable:
``bash export WOLFRAM_API_KEY="your-app-id" ``
- Configure Claude Desktop with the following JSON:
``json { "mcpServers": { "MCP-wolfram-alpha": { "command": "uv", "args": [ "--directory", "/path/to/MCP-wolfram-alpha", "run", "MCP-wolfram-alpha" ], "env": { "WOLFRAM_API_KEY": "your-app-id" } } } } ``