Servers
mcp-maxima
@toms74209200
Model Context Protocol(MCP) server of Maxima.
Model Context Protocol(MCP) server of Maxima.
Requirements
This software requires follows.
Usage
To use it from Deno, you need the subprocess permission.
deno run --allow-run jsr:@toms/mcp-maxima
To use it from MCP client, you need to set up the server configuration bellow.
For Visual Studio Code:
mcp.json
{
"servers": {
"maxima-mcp": {
"type": "stdio",
"command": "deno",
"args": [
"run",
"--allow-run",
"jsr:@toms/mcp-maxima"
]
}
}
}