MCP Catalogs
Home

math-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

math-mcp
by EthanHenrickson
everything
by modelcontextprotocol
Stars★ 133★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit3 mo agothis month

math-mcp · Summary

MCP server providing math, statistical and trigonometric functions for accurate numerical calculations.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

math-mcp · Use cases

  • Enabling accurate financial calculations in LLM applications
  • Supporting data analysis tasks requiring statistical functions
  • Allowing engineering calculations with trigonometric operations

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

math-mcp · Install

  1. Clone the repository: git clone https://github.com/EthanHenrickson/math-mcp
  2. Add to your MCP configuration:
"math": {
  "command": "node",
  "args": ["PATH\TO\PROJECT\math-mcp\build\index.js"]
}

Replace PATH\TO\PROJECT with the actual path.

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
Comparison generated from public README + GitHub signals. Last updated automatically.