convert_units
ActiveTool of mathjs
declared in 0.1.0
Convert between units: length, weight, temperature, volume, time, etc. Returns converted value. E.g., "5 m to ft", "100 kg to lbs", "32 degF to degC". Use for unit conversions.
Parameters schema
{
"type": "object",
"examples": [
{
"to": "ft",
"from": "m",
"value": 5
},
{
"to": "lbs",
"from": "kg",
"value": 100
}
],
"required": [
"value",
"from",
"to"
],
"properties": {
"to": {
"type": "string",
"description": "Target unit (e.g., \"cm\", \"lbs\", \"fahrenheit\", \"km/h\")"
},
"from": {
"type": "string",
"description": "Source unit (e.g., \"inches\", \"kg\", \"celsius\", \"mph\")"
},
"value": {
"type": "number",
"description": "Numeric value to convert (e.g., 5)"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
mathjs
https://github.com/pipeworx-io/mcp-mathjs
1/7 registries