Math & Numbers
Solve separable dy/dx = g(x)·h(y) symbolically: H(y) = G(x) + C, explicit inversion, initial conditions, and partial fractions for quadratics like y(1−y).
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/first-order-ode-solver' \
-H 'Content-Type: application/json' \
-d '{"gx":"2x","hy":"y","x0":0,"y0":1}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/first-order-ode-solver| Name | Type | Required | Description |
|---|---|---|---|
| gx | text | Yes | x-dependent factor of dy/dx = g(x)·h(y). Terms: constants, x^n, (kx+m)^n, e^(kx), sin(kx+m), cos(kx+m), ln(kx+m), sqrt(kx+m). |
| hy | text | Yes | y-dependent factor. Single terms (y, y^n, (ky+m)^n, e^(ky)) or a degree ≤ 2 polynomial with real roots, or c/D(y). |
| x0 | number | No | Only used together with y₀ to pin down the constant C. |
| y0 | number | No | Initial value. Leave empty for the general solution; provide with x₀ for the particular solution. |
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-first-order-ode-solver": {
"name": "first-order-ode-solver",
"description": "Solve separable dy/dx = g(x)·h(y) symbolically: H(y) = G(x) + C, explicit inversion, initial conditions, and partial fractions for quadratics like y(1−y).",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=first-order-ode-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": "first-order-ode-solver",
"arguments": {
"gx": "2x",
"hy": "y",
"x0": 0,
"y0": 1
}
}
}Questions or issues? Contact [email protected]
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}