Skip to content

Commit 6ca006b

Browse files
author
Michelle Hirsch
committed
Initial public release
0 parents  commit 6ca006b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+7367
-0
lines changed

.agents/plugins/marketplace.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"schema_version": "1.0",
3+
"name": "matlab-agentic-toolkit",
4+
"display_name": "MATLAB Agentic Toolkit",
5+
"description": "Core MATLAB skills and MCP tools for AI coding agents. Testing, debugging, code review, Live Scripts, App Builder, and code modernization.",
6+
"version": "0.1.0",
7+
"publisher": "mathworks",
8+
"source": {
9+
"source": "local",
10+
"path": "../../"
11+
},
12+
"policy": {
13+
"installation": "INSTALLED_BY_DEFAULT"
14+
}
15+
}

.amp/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"amp.mcpServers": {
3+
"matlab": {
4+
"command": "/path/to/matlab-mcp-core-server"
5+
}
6+
}
7+
}

.claude-plugin/marketplace.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3+
"name": "matlab-agentic-toolkit",
4+
"owner": {
5+
"name": "MathWorks"
6+
},
7+
"plugins": [
8+
{
9+
"name": "toolkit",
10+
"version": "0.1.0",
11+
"description": "Setup and management for the MATLAB Agentic Toolkit. Detects MATLAB, installs the MCP server, registers the Claude Code plugin, and verifies the environment.",
12+
"author": {
13+
"name": "MathWorks"
14+
},
15+
"keywords": ["matlab", "setup", "mcp", "configuration"],
16+
"source": "./",
17+
"category": "development",
18+
"strict": false,
19+
"skills": "./skills-catalog/toolkit/"
20+
},
21+
{
22+
"name": "matlab-core",
23+
"version": "0.1.0",
24+
"description": "MATLAB skills and MCP tools for AI coding agents. Testing, debugging, reviewing code, creating Live Scripts, building apps, and modernizing code.",
25+
"author": {
26+
"name": "MathWorks"
27+
},
28+
"keywords": ["matlab", "mcp", "testing", "reviewing-code", "debugging", "modernizing-code"],
29+
"source": "./",
30+
"category": "development",
31+
"strict": false,
32+
"skills": "./skills-catalog/matlab-core/",
33+
"mcpServers": {
34+
"matlab": {
35+
"command": "matlab-mcp-core-server",
36+
"args": ["--matlab-display-mode", "nodesktop"]
37+
}
38+
}
39+
}
40+
]
41+
}

.codex-mcp.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"matlab": {
3+
"command": "matlab-mcp-core-server",
4+
"args": ["--matlab-display-mode", "nodesktop"]
5+
}
6+
}

.codex-plugin/plugin.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "matlab-agentic-toolkit",
3+
"version": "0.1.0",
4+
"description": "MATLAB skills and MCP tools for AI coding agents. Testing, debugging, code review, Live Scripts, App Builder, and code modernization.",
5+
"author": {
6+
"name": "MathWorks"
7+
},
8+
"license": "MathWorks BSD-3-Clause",
9+
"keywords": ["matlab", "mcp", "testing", "debugging", "code-review", "live-scripts", "app-builder"],
10+
"skills": "./skills-catalog/",
11+
"mcpServers": "./.codex-mcp.json",
12+
"interface": {
13+
"displayName": "MATLAB Agentic Toolkit",
14+
"shortDescription": "Core MATLAB skills and MCP tools for AI coding agents.",
15+
"category": "Development"
16+
}
17+
}

.cursor-plugin/plugin.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"schema_version": "1.0",
3+
"name": "matlab-agentic-toolkit",
4+
"display_name": "MATLAB Agentic Toolkit",
5+
"description": "Core MATLAB skills and MCP tools for AI coding agents. Testing, debugging, code review, Live Scripts, App Builder, and code modernization.",
6+
"version": "0.1.0",
7+
"publisher": "mathworks",
8+
"skills": [
9+
"skills-catalog/matlab-core/"
10+
],
11+
"mcp_servers": {
12+
"matlab": {
13+
"command": "/path/to/matlab-mcp-core-server"
14+
}
15+
}
16+
}

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Internal-only directories — excluded from the public branch.
5+
# The publish-public.sh script reads these entries to determine what to remove.
6+
.meta/ export-ignore
7+
.claude/ export-ignore
8+
utilities/ export-ignore

.gitignore

Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110+
.pdm.toml
111+
.pdm-python
112+
.pdm-build/
113+
114+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115+
__pypackages__/
116+
117+
# Celery stuff
118+
celerybeat-schedule
119+
celerybeat.pid
120+
121+
# SageMath parsed files
122+
*.sage.py
123+
124+
# Environments
125+
.env
126+
.venv
127+
env/
128+
venv/
129+
ENV/
130+
env.bak/
131+
venv.bak/
132+
133+
# Spyder project settings
134+
.spyderproject
135+
.spyproject
136+
137+
# Rope project settings
138+
.ropeproject
139+
140+
# mkdocs documentation
141+
/site
142+
143+
# mypy
144+
.mypy_cache/
145+
.dmypy.json
146+
dmypy.json
147+
148+
# Pyre type checker
149+
.pyre/
150+
151+
# pytype static type analyzer
152+
.pytype/
153+
154+
# Cython debug symbols
155+
cython_debug/
156+
157+
# PyCharm
158+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160+
# and can be added to the global gitignore or merged into this file. For a more nuclear
161+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162+
#.idea/
163+
164+
# Exclude generated files
165+
*.asv
166+
*.slxc
167+
slprj/
168+
junit-results.xml
169+
*-instructions.md
170+
*-results.md
171+
builtin_blocks_*.json
172+
173+
# VS Code settings (keep mcp.json for Copilot/MCP integration)
174+
.vscode/*
175+
!.vscode/mcp.json
176+
177+
# Work notes (local planning, not for distribution)
178+
.work/
179+
180+
# Claude Code local settings (developer-specific, not for distribution)
181+
.claude/settings.local.json
182+
.mcp.json

.vscode/mcp.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
// MATLAB MCP Server — connects GitHub Copilot and VS Code to a live MATLAB session.
3+
//
4+
// Prerequisites:
5+
// 1. MATLAB installed and on PATH (or add --matlab-root arg below)
6+
// 2. matlab-mcp-core-server binary installed to ~/.local/bin/
7+
// Install: https://github.com/mathworks/matlab-mcp-core-server/releases
8+
//
9+
// If the server binary is not on PATH, replace "command" with the full path:
10+
// Windows: "${userHome}/.local/bin/matlab-mcp-core-server.exe"
11+
// macOS: "${userHome}/.local/bin/matlab-mcp-core-server"
12+
// Linux: "${userHome}/.local/bin/matlab-mcp-core-server"
13+
//
14+
// If MATLAB is not on PATH, add "--matlab-root" to args:
15+
// "args": ["--matlab-root", "/path/to/MATLAB/R2025b", "--matlab-display-mode", "nodesktop"]
16+
17+
"servers": {
18+
"matlab": {
19+
"type": "stdio",
20+
"command": "matlab-mcp-core-server",
21+
"args": [
22+
"--matlab-display-mode",
23+
"nodesktop"
24+
]
25+
}
26+
}
27+
}

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contribute to MATLAB Agentic Toolkit
2+
3+
MathWorks welcomes your feedback on the MATLAB Agentic Toolkit.
4+
5+
- **Issues**: To report bugs, suggest features, or discuss ideas, open an issue. MathWorks actively monitors and responds to issues.
6+
- **Pull Requests**: MathWorks reviews all contributions but does not merge external pull requests. Your ideas may influence development of future releases.
7+
8+
9+
---
10+
11+
Copyright 2026 The MathWorks, Inc.

0 commit comments

Comments
 (0)