mcp-maxima
About
Model Context Protocol(MCP) server of Maxima.
Details
- Author
- toms74209200
- Downloads
- 183
- Categories
- Other
Jump to
- Provides Maxima computations via MCP protocol
- Uses stdio transport for easy client integration
- Requires only Deno and Maxima as dependencies
- Runs Maxima as a subprocess with explicit permission
- Built on official TypeScript MCP SDK and Zod
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
mcp-maximaCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Ensure Maxima and Deno 2.0 or later are installed. Run deno run --allow-run jsr:@toms/mcp-maxima from the terminal. For MCP clients (e.g., VS Code), configure a stdio server in mcp.json with command: "deno" and args: ["run", "--allow-run", "jsr:@toms/mcp-maxima"].
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp-maxima": {
"mcp-maxima": {
"command": "deno",
"args": [
"run",
"--allow-run",
"jsr:@toms/mcp-maxima"
]
}
}
}
}
McpServers
{
"mcp-maxima": {
"command": "deno",
"args": [
"run",
"--allow-run",
"jsr:@toms/mcp-maxima"
]
}
}
mcp-maxima
Model Context Protocol(MCP) server of Maxima.
Requirements
This software requires follows.
- Maxima
- Deno 2.0.0 or later
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"
]
}
}
}
Development
- Deno
- modelcontextprotocol/typescript-sdk
- colinhacks/zod:
License
Author
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



