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 henry@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.

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