baltamatica.mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| execute_codeC | Execute a Baltamatica code snippet and return output from the backend. |
| run_scriptB | Run a local Baltamatica |
| clear_workspaceB | Clear variables from the Baltamatica workspace state. |
| list_variablesA | List variables in the Baltamatica workspace state. |
| get_variableB | Return a display representation of one Baltamatica variable. |
| set_variableA | Create or overwrite a workspace variable.
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: workspace management (clear, list, get, set) and code execution (snippet vs script). No overlap or ambiguity.
All tools follow a consistent verb_noun pattern (e.g., clear_workspace, execute_code, set_variable). No deviations.
6 tools is well-scoped for a MATLAB-like environment, covering workspace operations and code execution without unnecessary bloat.
Covers core workspace CRUD (create via set, read via get/list, delete via clear) and execution. Missing a per-variable delete, but overall sufficient for typical use.