Math & Numbers
Find slope, y-intercept, and line equation from two points or multiple paired observations
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/slope-intercept-calculator' \
-H 'Content-Type: application/json' \
-d '{"point1X":1,"point1Y":2,"point2X":5,"point2Y":8,"dataPairs":"","decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/slope-intercept-calculator| Name | Type | Required | Description |
|---|---|---|---|
| point1X | number | No | — |
| point1Y | number | No | — |
| point2X | number | No | — |
| point2Y | number | No | — |
| dataPairs | textarea | No | — |
| decimalPlaces |
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-slope-intercept-calculator": {
"name": "slope-intercept-calculator",
"description": "Find slope, y-intercept, and line equation from two points or multiple paired observations",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=slope-intercept-calculator",
"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": "slope-intercept-calculator",
"arguments": {
"point1X": 1,
"point1Y": 2,
"point2X": 5,
"point2Y": 8,
"dataPairs": "",
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}