Math & Numbers
Plot one or more y=f(x) expressions, mark roots and extrema, and generate SVG-ready graph output
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/function-equation-plotter' \
-H 'Content-Type: application/json' \
-d '{"expressions":"x^2 - 2*x\nsin(x)","xMin":-2,"xMax":4,"yMin":-2,"yMax":4,"sampleCount":240,"integralFrom":0,"integralTo":3.1416}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/function-equation-plotter| Name | Type | Required | Description |
|---|---|---|---|
| expressions | textarea | Yes | — |
| xMin | number | Yes | — |
| xMax | number | Yes | — |
| yMin | number | No | — |
| yMax | number | No | — |
| sampleCount |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-function-equation-plotter": {
"name": "function-equation-plotter",
"description": "Plot one or more y=f(x) expressions, mark roots and extrema, and generate SVG-ready graph output",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=function-equation-plotter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "function-equation-plotter",
"arguments": {
"expressions": "x^2 - 2*x\nsin(x)",
"xMin": -2,
"xMax": 4,
"yMin": -2,
"yMax": 4,
"sampleCount": 240,
"integralFrom": 0,
"integralTo": 3.1416
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| integralFrom | number | No | — |
| integralTo | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}