mcp-maxima

toms74209200/mcp-maxima

3.2

If you are the rightful owner of mcp-maxima and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

Model Context Protocol (MCP) server for Maxima, enabling integration with various platforms using Deno.

mcp-maxima

GitHub JSR Docker Hub GitHub tag (with filter)

Model Context Protocol(MCP) server of Maxima.

Requirements

This software requires follows.

  • Maxima
  • Deno 2.0.0 or later (or Node.js 24 or later)

Usage

JSR package

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"
      ]
    }
  }
}

Docker image

To use it from Docker, you can pull the image from Docker Hub.

https://hub.docker.com/r/motomotomato/mcp-maxima

docker pull motomotomato/mcp-maxima
docker run -i --rm motomotomato/mcp-maxima

mcp.json

{
  "servers": {
    "maxima-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "motomotomato/mcp-maxima"
      ]
    }
  }
}

Development

License

Author

toms74209200