Math & Numbers
Üben Sie die Regeln für signifikante Stellen mit Schritt-für-Schritt-Feedback: zählen, auf N Stellen runden, wissenschaftliche Notation und Fortpflanzung bei +/−/×/÷.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/significant-figures-sandbox' \
-H 'Content-Type: application/json' \
-d '{"number":"0.005030","mode":"practice","guess":4,"roundN":0,"sciDigits":0,"opA":"e.g. 12.5","opB":"e.g. 3.20","operation":"+"}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/significant-figures-sandbox| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| number | text | Ja | The number to analyse. Accepts integers, decimals, leading zeros, and scientific notation (1.23e4, 1.23E4, 1.23×10^4). |
| mode | select | Nein | Practice gives feedback on your sig-fig guess. Round rounds to N sig figs. Propagate applies the +/−/×/÷ rule to two operands. |
| guess | number | Nein | Practice mode only: enter your guess to get correct/incorrect feedback. |
| roundN | number | Nein | Round mode only: how many sig figs to round to. Defaults to the number's own count. |
| sciDigits |
Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-significant-figures-sandbox": {
"name": "significant-figures-sandbox",
"description": "Üben Sie die Regeln für signifikante Stellen mit Schritt-für-Schritt-Feedback: zählen, auf N Stellen runden, wissenschaftliche Notation und Fortpflanzung bei +/−/×/÷.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=significant-figures-sandbox",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "significant-figures-sandbox",
"arguments": {
"number": "0.005030",
"mode": "practice",
"guess": 4,
"roundN": 0,
"sciDigits": 0,
"opA": "e.g. 12.5",
"opB": "e.g. 3.20",
"operation": "+"
}
}
}| number |
| Nein |
| Round mode only: how many sig figs to show in scientific notation. Defaults to the round-to value. |
| opA | text | Nein | Propagate mode only: first measured value. |
| opB | text | Nein | Propagate mode only: second measured value. |
| operation | select | Nein | Propagate mode only: the operation to apply. |
HTML-Ergebnis
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Fragen oder Probleme? Kontakt: [email protected]