matlab-mcp-core-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
matlab-mcp-core-server by matlab | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 636 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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": [] } } } ``
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.