Math & Numbers
Conversão de resistência térmica: K/W (base SI) ↔ °C/W (1=1) ↔ °F·h/BTU IT (1=1,8956342). Conversão via K/W com os três equivalentes. Ref.: dissipador CPU 0,1–0,3, LED 5–20, convecção natural ~1 K/W.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/thermal-resistance-converter' \
-H 'Content-Type: application/json' \
-d '{"inputUnit":"K/W","value":0.5,"outputUnit":"°F·h/BTU (IT)","decimalPlaces":6}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/thermal-resistance-converter| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| inputUnit | select | Não | — |
| value | number | Sim | Thermal resistance in the selected Input unit. Must be non-negative. |
| outputUnit | select | Não | — |
| decimalPlaces | number | Não | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-thermal-resistance-converter": {
"name": "thermal-resistance-converter",
"description": "Conversão de resistência térmica: K/W (base SI) ↔ °C/W (1=1) ↔ °F·h/BTU IT (1=1,8956342). Conversão via K/W com os três equivalentes. Ref.: dissipador CPU 0,1–0,3, LED 5–20, convecção natural ~1 K/W.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermal-resistance-converter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "thermal-resistance-converter",
"arguments": {
"inputUnit": "K/W",
"value": 0.5,
"outputUnit": "°F·h/BTU (IT)",
"decimalPlaces": 6
}
}
}Dúvidas ou problemas? Contate [email protected]