MCP Catalogs
Home

matlab-mcp-core-server vs everything

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

matlab-mcp-core-server
by matlab
everything
by modelcontextprotocol
Stars★ 636★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last committhis monththis month

matlab-mcp-core-server · Summary

Official MATLAB MCP Server enabling AI applications to execute MATLAB code and access MATLAB functionality.

everything · Summary

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

matlab-mcp-core-server · Use cases

  • AI coding assistants generating and debugging MATLAB code
  • Automated analysis of MATLAB scripts for code quality
  • Integration of MATLAB capabilities into AI development workflows

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

matlab-mcp-core-server · Install

Installation Steps

  1. Install MATLAB 2021a or later and add it to the system PATH
  1. Download the latest release for your platform or build from source:

``bash go install github.com/matlab/matlab-mcp-core-server/cmd/matlab-mcp-core-server@latest ``

  1. For Claude Desktop, install the Filesystem extension then download and install the matlab-mcp-core-server.mcpb bundle
  1. For Claude Code, run:

``bash claude mcp add --transport stdio matlab -- /path/to/matlab-mcp-core-server ``

  1. For GitHub Copilot in VS Code, create .vscode/mcp.json with:

``json { "servers": { "matlab": { "type": "stdio", "command": "/path/to/matlab-mcp-core-server", "args": [] } } } ``

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.