You're viewing a demo portfolio

Join the waitlist
PRSM

run_computation

Active

Tool of Claidex MCP

declared in 1.0.0

Evaluate deterministic mathematical expressions with optional variables. Use for algebra, matrices, vectors, transformations, descriptive numerical checks, and reproducible calculations. Does not execute arbitrary JavaScript or install packages.

Parameters schema

{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "expression",
    "variables"
  ],
  "properties": {
    "variables": {
      "type": "object",
      "default": {},
      "description": "Variables available to the expression. Values must be numbers, strings, vectors, or matrices.",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {
        "anyOf": [
          {
            "type": "number"
          },
          {
            "type": "string"
          },
          {
            "type": "array",
            "items": {
              "type": "number"
            }
          },
          {
            "type": "array",
            "items": {
              "type": "array",
              "items": {
                "type": "number"
              }
            }
          }
        ]
      }
    },
    "expression": {
      "type": "string",
      "maxLength": 4000,
      "minLength": 1,
      "description": "MathJS expression, e.g. mean(values), std(values), multiply(A, b), inv(A)."
    }
  },
  "additionalProperties": false
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

Claidex MCP

https://github.com/ssatanis/claidex-sentinel

1/7 registries
View full server →