MCP Catalogs
Home

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
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month9 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-everything

MCP-wolfram-alpha · Install

Installation

  1. Install the required dependencies (Python and uv):

``bash pip install uv ``

  1. Clone the repository:

``bash git clone https://github.com/SecretiveShell/MCP-wolfram-alpha.git cd MCP-wolfram-alpha ``

  1. Set your Wolfram Alpha API key as an environment variable:

``bash export WOLFRAM_API_KEY="your-app-id" ``

  1. 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" } } } } ``

Comparison generated from public README + GitHub signals. Last updated automatically.