能做什么
面向本机自动化:一次启动,对内调度 MCP 与系统工具。
安装
01
下载并解压
从上方获取对应平台的 zip,解压到任意目录(建议路径无空格与中文)。
02
启动服务
Windows 双击或在终端执行;macOS 先赋予执行权限。
# Windows
xclaw.exe
# macOS
chmod +x ./xclaw
./xclaw
03
(可选)安装 MATLAB MCP
下载平台对应文件到固定目录,稍后在配置里填写绝对路径。
配置
相对路径相对于可执行文件目录。缺失时会自动生成默认文件。
01
MCP 配置 config/mcp.json
Windows 示例:
{
"mcpServers": {
"matlab-mcp-stdio": {
"command": "C:\\Tools\\matlab-mcp-windows.exe",
"args": [],
"description": "MATLAB MCP"
}
}
}
macOS 示例:
{
"mcpServers": {
"matlab-mcp-stdio": {
"command": "/usr/local/bin/matlab-mcp-darwin",
"args": [],
"description": "MATLAB MCP"
}
}
}