Math & Numbers
Convert thermal conductivity between W/(m·K) (watt per metre-kelvin, SI base, = W/(m·°C)), kcal/(m·h·°C) (1 = 1.1627778 W/(m·K)), and BTU/(hr·ft·°F) (1 = 1.7307347 W/(m·K)). Converts via W/(m·K) to the target unit and also lists the equivalent value in all three units for reference. Reference values: copper ≈ 401, aluminum ≈ 237, steel ≈ 50, water ≈ 0.6, air ≈ 0.026, insulation foam ≈ 0.03 W/(m·K).
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/thermal-conductivity-converter' \
-H 'Content-Type: application/json' \
-d '{"inputUnit":"W/(m·K)","value":401,"outputUnit":"kcal/(m·h·°C)","decimalPlaces":6}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/thermal-conductivity-converter| Name | Type | Required | Description |
|---|---|---|---|
| inputUnit | select | No | — |
| value | number | Yes | Thermal conductivity in the selected Input unit. Must be non-negative. |
| outputUnit | select | No | — |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-thermal-conductivity-converter": {
"name": "thermal-conductivity-converter",
"description": "Convert thermal conductivity between W/(m·K) (watt per metre-kelvin, SI base, = W/(m·°C)), kcal/(m·h·°C) (1 = 1.1627778 W/(m·K)), and BTU/(hr·ft·°F) (1 = 1.7307347 W/(m·K)). Converts via W/(m·K) to the target unit and also lists the equivalent value in all three units for reference. Reference values: copper ≈ 401, aluminum ≈ 237, steel ≈ 50, water ≈ 0.6, air ≈ 0.026, insulation foam ≈ 0.03 W/(m·K).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermal-conductivity-converter",
"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": "thermal-conductivity-converter",
"arguments": {
"inputUnit": "W/(m·K)",
"value": 401,
"outputUnit": "kcal/(m·h·°C)",
"decimalPlaces": 6
}
}
}Questions or issues? Contact [email protected]