Math & Numbers
Compute distance, time, or final velocity for free fall from rest, given any one plus gravity
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/free-fall-calculator' \
-H 'Content-Type: application/json' \
-d '{"solveFor":"distance","distance":0,"time":3,"velocity":0,"gravity":9.80665}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/free-fall-calculator| Name | Type | Required | Description |
|---|---|---|---|
| solveFor | select | No | — |
| distance | number | No | — |
| time | number | No | — |
| velocity | number | No | — |
| gravity | number | No | — |
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-free-fall-calculator": {
"name": "free-fall-calculator",
"description": "Compute distance, time, or final velocity for free fall from rest, given any one plus gravity",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=free-fall-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": "free-fall-calculator",
"arguments": {
"solveFor": "distance",
"distance": 0,
"time": 3,
"velocity": 0,
"gravity": 9.80665
}
}
}Questions or issues? Contact [email protected]
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}