SimuBridge
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., "@SimuBridgeadd a Gain block set to 2.5 and connect to a Scope"
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.
π SimuBridge
AI-Powered Simulink Skill Pack with MCP Backend
What is this
simubridge-skills is a Claude Code / Codex skill project that lets AI assistants control MATLAB Simulink using natural language. It contains:
π― Skill pack (
skill/simubridge/) β prompt bundle that teaches AI how to use Simulink tools effectivelyπ§ MCP server (
src/simubridge/) β local backend connecting to MATLAB Engine with 20+ tools
The skill is the product. The MCP server is the backend.
Related MCP server: simulink-mcp
Skill Index
Skill | Status | Purpose | Trigger Keywords |
Stable | Simulink model creation, inspection, modification, and simulation | "Simulink", "open model", "add block", "connect", "simulate", "subsystem" |
Quick Start
Prerequisites
MATLAB R2021a+ with Simulink
Python 3.9β3.12
1. Install MATLAB Engine for Python
cd "C:\Program Files\MATLAB\R2024a\extern\engines\python"
python setup.py installVerify: python -c "import matlab.engine; print('OK')"
π‘ Permission error? Add
--user. Python 3.13+? Downgrade to 3.11 or 3.12.
2. Install the MCP Backend
git clone https://github.com/naaomiur/simubridge-skills.git
cd simubridge-skills
pip install -e .3. Configure MATLAB
Run in MATLAB:
matlab.engine.shareEngine('SIMULINK_MCP_SESSION')π‘ Add to
startup.mfor auto-share on every launch:edit(fullfile(userpath, 'startup.m'))
4. Install the Skill
The skill teaches Claude how to use Simulink tools effectively. Copy the entire folder (not just SKILL.md) β the references/ directory is needed by the skill.
β οΈ Only copying
SKILL.mdwill silently break the skill. Always copy the wholeskill/simubridge/folder.
Claude Code (with MCP β full functionality)
mkdir -p ~/.claude/skills
cp -R skill/simubridge ~/.claude/skills/Configure the MCP server (see Step 5), restart, and Claude can fully control Simulink.
Claude Code (standalone skill β no MATLAB needed)
Even without MATLAB or the MCP backend, you can still use the skill as a Simulink knowledge base for planning and discussion:
mkdir -p ~/.claude/skills
cp -R skill/simubridge ~/.claude/skills/Start a Claude Code session and ask:
Read the simubridge skill. I'm designing a motor control system in Simulink β
suggest a block diagram layout with the right blocks and wiring topology.Claude will read SKILL.md and references/tool-guide.md to give informed guidance β even without executing anything. This is useful for:
Planning model architecture before building it
Getting block library paths and parameter names for manual use
Learning Simulink workflows and best practices
Designing subsystem hierarchies and wiring strategies
π‘ How it works: The skill provides Claude with detailed knowledge of every Simulink tool, common library paths, port types, and wiring patterns. Claude can then advise you on model design even when the MCP backend isn't running.
Codex
β οΈ Codex is not yet supported. We are working on Codex skill packaging. For now, use Claude Code.
5. Configure the MCP Server
The MCP server must be configured so the AI assistant can connect to it.
Claude Code
Add to claude_desktop_config.json:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"simubridge": {
"command": "python",
"args": ["-m", "simubridge"]
}
}
}You can also copy the included claude_desktop_config.json directly.
Codex
Add the same configuration in Codex's MCP settings panel.
Verify Installation
Restart your AI assistant. Start a new session and try:
Open mymodel.slx, add a Gain block set to 2.5 after the Voltage Source,
and connect it to a ScopeIf everything is configured correctly, Claude will:
Recognize the Simulink task
Read the skill definitions from
SKILL.mdCall MCP tools like
search_library,add_block,connectto complete the task
What the Skill Can Do
Category | Tools | Description |
Model |
| Model lifecycle |
Block |
| Block management |
Param |
| Parameter configuration |
Wiring |
| Signal/power wiring (batch supported) |
Inspect |
| Topology audit |
Stateflow |
| MATLAB Function code |
Simulation |
| Simulation + waveform analysis |
Workspace |
| MATLAB workspace |
Subsystem |
| Subsystem ops |
Escape |
| Arbitrary MATLAB execution |
π Complete tool documentation:
skill/simubridge/SKILL.md
Architecture
βββββββββββββββββββ Skill ββββββββββββββββ MCP stdio ββββββββββββββββ MATLAB API ββββββββββββ
β Claude / Codex β βββββββββββββ β simubridge β ββββββββββββββββΊ β MCP Server β ββββββββββββββΊ β MATLAB β
β + Skill Prompt β β (skill def) β β (Python) β β(Simulink)β
βββββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββSkill layer:
skill/simubridge/SKILL.mdβ teaches AI how to use each toolTransport: MCP stdio β local process, no network
Engine:
matlab.engineAPI β connects to your running MATLAB sessionAuto-save: every write operation auto-saves the model
Project Structure
simubridge-skills/
βββ skill/simubridge/ # π― Skill pack (primary)
β βββ README.md # Skill documentation
β βββ SKILL.md # Skill definition (bilingual tool reference)
β βββ references/
β βββ tool-guide.md # Quick reference
βββ src/simubridge/ # π§ MCP backend
β βββ __init__.py # Entry point + tool registration
β βββ app.py # FastMCP + MATLAB engine manager
β βββ tools/ # 7 tool modules
βββ examples/
β βββ basic_usage.md
βββ pyproject.toml
βββ claude_desktop_config.json
βββ LICENSE
βββ README.md # This file (English)
βββ README_CN.md # Chinese versionLicense
MIT License β see LICENSE.
β οΈ MATLAB and Simulink are registered trademarks of The MathWorks, Inc. This project is not affiliated with or endorsed by MathWorks.
Acknowledgments
Built with FastMCP and the Model Context Protocol.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/naaomiur/simubridge-skills'
If you have feedback or need assistance with the MCP directory API, please join our Discord server