MATLAB and Simulink driver for sim-cli, distributed as a plugin via Python entry_points.
This plugin delegates to MathWorks' matlabengine package and the local MATLAB
binary. It does not bundle MATLAB or any MathWorks SDK. See
LICENSE-NOTICE.md.
Other optional agent toolkits can be combined with this plugin depending on
your local environment and task. For example, if your agent environment already
has MathWorks' MATLAB Agentic Toolkit,
Simulink Agentic Toolkit,
or MATLAB MCP Core Server
available, those tools can be used alongside sim-plugin-matlab.
For agent projects, install sim-cli-core and the MATLAB plugin in the project environment:
uv init # only if this is not already a uv project
uv add sim-cli-core sim-plugin-matlab
uv run sim plugin sync-skills --target .agents/skills --copy
uv run sim check matlab
uv run sim plugin doctor matlab --deepFor local persistent sessions, install the MathWorks engine SDK that matches the MATLAB release installed on your machine (24.1 ↔ R2024a, 24.2 ↔ R2024b, 25.1 ↔ R2025a, 25.2 ↔ R2025b):
uv add matlabengine==24.1The plugin keeps matlabengine optional because the SDK build itself requires
a matching local MATLAB installation.
For Claude Code, sync the bundled skill to .claude/skills instead:
uv run sim plugin sync-skills --target .claude/skills --copyuv run sim ... runs sim from this project environment, so it sees this
project's plugins. Without uv, create and activate a venv, then install
sim-cli-core plus this plugin from PyPI with python -m pip.
The plugin registers via three entry-point groups:
[project.entry-points."sim.drivers"]
matlab = "sim_plugin_matlab:MatlabDriver"
[project.entry-points."sim.skills"]
matlab = "sim_plugin_matlab:skills_dir"
[project.entry-points."sim.plugins"]
matlab = "sim_plugin_matlab:plugin_info"sim.drivers exposes the driver class, sim.skills exposes the bundled skill
files, and sim.plugins exposes catalogue-style metadata for local discovery.
.m scripts dispatch via matlab -batch "run('<path>')". .slx/.mdl
Simulink models dispatch via load_system → sim_shim.run → close_system,
where +sim_shim/run.m is the MATLAB-side helper bundled under
src/sim_plugin_matlab/matlab_pkg/.
Optional agent toolkits are complementary to this plugin rather than bundled by
it. Agents and users can choose the available tool path that fits the task,
while sim-plugin-matlab continues to provide the sim driver interface.
git clone https://github.com/svd-ai-lab/sim-plugin-matlab
cd sim-plugin-matlab
uv sync
uv run pytest # unit tests run without MATLAB
SIM_MATLAB_RUN_INTEGRATION=1 uv run pytest tests/test_real_matlab_smoke.py -qApache-2.0. See LICENSE and LICENSE-NOTICE.md.