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 | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | this month | this 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
- Install MATLAB 2021a or later and add it to the system PATH
- 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 ``
- For Claude Desktop, install the Filesystem extension then download and install the
matlab-mcp-core-server.mcpbbundle
- For Claude Code, run:
``bash claude mcp add --transport stdio matlab -- /path/to/matlab-mcp-core-server ``
- For GitHub Copilot in VS Code, create
.vscode/mcp.jsonwith:
``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