Math & Numbers
Solve a·y'' + b·y' + c·y = f(x): characteristic roots, three homogeneous cases, undetermined coefficients with resonance, and C1/C2 from initial conditions.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/second-order-ode-solver' \
-H 'Content-Type: application/json' \
-d '{"a":1,"b":-3,"c":2,"forcing":"none","constantF":1,"polyCoeffs":"1","expA":1,"expK":1,"sinA":1,"sinB":0,"sinK":1,"x0":0,"y0":1,"y0prime":0}'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/second-order-ode-solver| Name | Type | Required | Description |
|---|---|---|---|
| a | number | Yes | Coefficient of y'' (must be nonzero). |
| b | number | Yes | Coefficient of y'. |
| c | number | Yes | Coefficient of y. |
| forcing | select | Yes | — |
| constantF | number | No | Used when forcing = Constant. |
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-second-order-ode-solver": {
"name": "second-order-ode-solver",
"description": "Solve a·y'' + b·y' + c·y = f(x): characteristic roots, three homogeneous cases, undetermined coefficients with resonance, and C1/C2 from initial conditions.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=second-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": "second-order-ode-solver",
"arguments": {
"a": 1,
"b": -3,
"c": 2,
"forcing": "none",
"constantF": 1,
"polyCoeffs": "1",
"expA": 1,
"expK": 1,
"sinA": 1,
"sinB": 0,
"sinK": 1,
"x0": 0,
"y0": 1,
"y0prime": 0
}
}
}Questions or issues? Contact [email protected]
| polyCoeffs |
| text |
| No |
| Comma-separated coefficients, constant term first (degree ≤ 5). Used when forcing = Polynomial. |
| expA | number | No | Used when forcing = Exponential. |
| expK | number | No | Used when forcing = Exponential. |
| sinA | number | No | Used when forcing = Sine/cosine. |
| sinB | number | No | Used when forcing = Sine/cosine. |
| sinK | number | No | Used when forcing = Sine/cosine. |
| x0 | number | No | Initial point (used with y₀ and y'₀). |
| y0 | number | No | Provide together with y'₀ to pin down C1, C2. |
| y0prime | number | No | Initial derivative (both or neither of y₀, y'₀). |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}