MATLAB MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MATLAB MCP Servergenerate a MATLAB script to plot a sine wave"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MATLAB MCP Server

We welcome contributions from everyone.
Related MCP server: MATLAB MCP Server
A powerful MCP server that integrates MATLAB with AI, allowing you to execute MATLAB code, generate MATLAB scripts from natural language descriptions, and access MATLAB documentation directly through your AI assistant.
Features
Resources
Access MATLAB documentation via
matlab://documentation/getting-startedURIGet started guide with examples and usage instructions
Tools
execute_matlab_code- Execute MATLAB code and get resultsRun any MATLAB commands or scripts
Option to save scripts for future reference
View output directly in your conversation
generate_matlab_code- Generate MATLAB code from natural languageDescribe what you want to accomplish in plain language
Get executable MATLAB code in response
Option to save generated scripts
Development
Install dependencies:
npm installBuild the server:
npm run buildFor development with auto-rebuild:
npm run watchRequirements
MATLAB installed on your system
Node.js (v14 or higher)
Installation
Installing via Smithery
To install MATLAB MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @WilliamCloudQi/matlab-mcp-server --client claude1. Install the package
npm install -g matlab-mcp-serverOr clone the repository and build it yourself:
git clone https://github.com/username/matlab-mcp-server.git
cd matlab-mcp-server
npm install
npm run build2. Configure cline to use the server
To use with cline , add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"matlab-server": {
"command": "node",
"args": ["/path/to/matlab-server/build/index.js"],
"env": {
"MATLAB_PATH": "/path/to/matlab/executable"
},
"disabled": false,
"autoApprove": []
}
}
}Replace /path/to/matlab/executable with the path to your MATLAB executable:
Windows: Usually
C:\\Program Files\\MATLAB\\R2023b\\bin\\matlab.exemacOS: Usually
/Applications/MATLAB_R2023b.app/bin/matlabLinux: Usually
/usr/local/MATLAB/R2023b/bin/matlab
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspectorThe Inspector will provide a URL to access debugging tools in your browser.
Available Tools
2 toolsexecute_matlab_codeC
Execute MATLAB code and return the results
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | MATLAB code to execute | |
| saveScript | No | Whether to save the MATLAB script for future reference | |
| scriptPath | No | Custom path to save the MATLAB script (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral disclosure burden. It states the basic action and result but does not disclose execution side effects, persistence between calls, result format, or how saveScript and scriptPath affect behavior. This is thin for an arbitrary code-execution tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one compact sentence with no filler and the primary action is front-loaded. It is concise, though arguably too terse given the missing behavioral context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one required parameter and fully documented optional parameters, the schema plus description are mostly usable. However, with no output schema and no annotations, the vague phrase 'return the results' leaves the return format undefined, and no execution-environment context is given.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so each parameter is already documented in the schema. The description adds no additional meaning for 'code', 'saveScript', or 'scriptPath', so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Execute'), identifies the target ('MATLAB code'), and notes the outcome ('return the results'). It is clear on its face but does not explicitly distinguish this tool from its sibling generate_matlab_code, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to choose execute_matlab_code over generate_matlab_code, and there are no exclusions or prerequisites. The intended use must be inferred from the tool name and basic semantics rather than from explicit direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_matlab_codeC
Generate MATLAB code from a natural language description
| Name | Required | Description | Default |
|---|---|---|---|
| saveScript | No | Whether to save the generated MATLAB script | |
| scriptPath | No | Custom path to save the MATLAB script (optional) | |
| description | Yes | Natural language description of what the code should do |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says code will be generated; it does not explain whether code is returned, saved, or how the optional saveScript/scriptPath parameters affect behavior. It also does not state that this tool does not execute the generated MATLAB code.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It communicates the primary function efficiently, and every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations and no output schema, the description leaves important operational details unstated: how the generated code is returned to the agent, what the default saving behavior is, and how it relates to execute_matlab_code. These gaps could cause incorrect invocation or misunderstanding of the tool's response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers all three parameters with descriptions, so the baseline is 3. The description's 'from a natural language description' slightly reinforces the central 'description' parameter, but it adds no meaning beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Generate') and resource ('MATLAB code'), making the core purpose clear. It does not explicitly contrast itself against the sibling execute_matlab_code, so the differentiation is only implicit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to choose this tool over execute_matlab_code, and no mention of prerequisites or intended workflow. The agent must infer that 'generate' means code creation rather than execution, but the description offers no explicit selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The two tools are clearly distinct: one generates MATLAB code and the other executes it. There is no ambiguity or overlap in their purposes.
Both tool names follow the same verb_noun pattern: generate_matlab_code and execute_matlab_code. The naming is perfectly consistent and predictable.
Two tools is on the low end and feels thin for a server, but each tool has a meaningful role. The set is coherent, yet minimal.
The core workflow of generating and executing MATLAB code is covered without dead ends. Some auxiliary capabilities like persistent workspace management or file I/O are missing, but agents can likely work around these with generated code.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
An MCP server that integrates with Discord to provide AI-powered features.
This MCP server enables users to perform scientific computations regarding linear algebra and vect…
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted MCP server connecting AI assistants to 9,000+ apps and 40,000+ actions via Zapier.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAllows interaction with MATLAB by creating and executing scripts and functions through Claude or other MCP clients, supporting script management and execution result retrieval with environment configuration capabilities.39
- AlicenseBqualityFmaintenanceIntegrates MATLAB with AI to execute code, generate scripts from natural language, and access MATLAB documentation seamlessly.255Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables interactive MATLAB development by allowing users to execute scripts and specific code sections, manage workspace variables, and capture generated plots. It integrates with the MATLAB Python Engine to provide persistent execution context for MCP-compatible clients.18BSD 3-Clause
- AlicenseAqualityAmaintenanceMCP server that connects any AI agent to MATLAB — execute code, async jobs, interactive Plotly plots, custom tools, and monitoring dashboard205MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FraanW/MATLAB-MCP-SERVER'
If you have feedback or need assistance with the MCP directory API, please join our Discord server