We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/neuromechanist/matlab-mcp-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_workspace.m•256 B
%% Initialize Variables
% Create some test variables
x = 10;
y = 20;
z = x + y;
%% Create Arrays
% Make some arrays
arr1 = 1:5;
arr2 = arr1.^2;
%% Plot Data
% Generate a simple plot
figure;
plot(arr1, arr2);
title('Test Plot');
xlabel('X');
ylabel('Y');