Mathematica MCP Server
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": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {
"tasks": {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
},
"prompts": {
"get": {}
},
"resources": {
"read": {}
}
}
}
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| evaluateA | Evaluate a Wolfram Language script by running the Documentation for Wolfram Language: https://context7.com/websites/reference_wolfram_language/llms.txt IMPORTANT: The tool is returning the result of the last line executed in the script, and any expression printed explicitly with Arguments: script (str): Wolfram Language script to execute. Returns: str: The result of the Wolfram Language script as a string. |
| version_wolframscriptA | Get the version of the Returns:
str: Version of the |
| version_wolframengineA | Get the version of the Wolfram Engine. Returns: str: Version of the Wolfram Engine. |
| licensetypeA | Get the license type of the Wolfram Engine. Returns: str: License type of the Wolfram Engine e.g. 'Professional'. |
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 4 tools
Each tool has a clearly distinct purpose: evaluate executes scripts, licensetype returns license info, and the two version tools return specific version strings. There is no overlap.
Tool names mix conventions: evaluate is a verb, licensetype is a compound noun without underscore, and version_wolframengine/script use noun_verb pattern. Inconsistency in verb usage and separators.
With 4 tools, the server covers core evaluation and basic information retrieval. Slightly thin but reasonable for a focused Mathematica evaluation server.
The server provides the essential evaluate tool but lacks auxiliary capabilities like error handling, file management, or interactive sessions. Some gaps for advanced use cases.