Install
openclaw skills install @brucegutman/pipeworx-newtonSymbolic math solver — simplify, differentiate, integrate, and factor expressions via the Newton API
openclaw skills install @brucegutman/pipeworx-newtonSymbolic mathematics over an API. Simplify algebraic expressions, compute derivatives and integrals, and factor polynomials. All operations return exact symbolic results, not numerical approximations.
| Tool | Description |
|---|---|
simplify | Simplify a mathematical expression (e.g., "2^2+2(2)" becomes "8") |
derive | Differentiate with respect to x (e.g., "x^3+2x^2+x" becomes "3x^2+4x+1") |
integrate | Indefinite integral with respect to x (e.g., "x^2" becomes "1/3 x^3") |
factor | Factor a polynomial (e.g., "x^2-1" becomes "(x-1)(x+1)") |
curl -s -X POST https://gateway.pipeworx.io/newton/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"derive","arguments":{"expression":"x^3+2x^2+x"}}}'
{
"operation": "derive",
"expression": "x^3+2x^2+x",
"result": "3 x^2 + 4 x + 1"
}
{
"mcpServers": {
"pipeworx-newton": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/newton/mcp"]
}
}
}