Science & Education
Solve 1D constant-acceleration kinematics problems and 2D projectile motion, with a full step-by-step derivation. Enter any 3 of the 5 quantities (displacement, initial velocity, final velocity, acceleration, time) and the solver finds the other two, showing each formula, the substitution, and the result. For projectiles, enter launch speed/angle/height to get range, time of flight, and max height.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/physics-kinematics-problem-solver' \
-H 'Content-Type: application/json' \
-d '{"mode":"1d","s":"","u":25,"v":0,"a":-6,"t":"","angle":45,"y0":0,"precision":3}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/physics-kinematics-problem-solver| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| s | number | No | — |
| u | number | No | — |
| v | number | No | — |
| a | number | No | — |
| t | number |
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-physics-kinematics-problem-solver": {
"name": "physics-kinematics-problem-solver",
"description": "Solve 1D constant-acceleration kinematics problems and 2D projectile motion, with a full step-by-step derivation. Enter any 3 of the 5 quantities (displacement, initial velocity, final velocity, acceleration, time) and the solver finds the other two, showing each formula, the substitution, and the result. For projectiles, enter launch speed/angle/height to get range, time of flight, and max height.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=physics-kinematics-problem-solver",
"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": "physics-kinematics-problem-solver",
"arguments": {
"mode": "1d",
"s": "",
"u": 25,
"v": 0,
"a": -6,
"t": "",
"angle": 45,
"y0": 0,
"precision": 3
}
}
}| No |
| — |
| angle | number | No | Projectile mode: launch angle above horizontal. |
| y0 | number | No | Projectile mode: initial height above ground. |
| precision | number | Yes | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]