Health
Convert hemoglobin between g/dL, g/L, and mmol/L. Factor 0.6206 (g/dL→mmol/L, IFCC/IUPAC monomer, 16.1145 g/mmol); × 10 for g/L. Derived from WHO 2011, IFCC/IUPAC, Young 1987, StatPearls. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/hemoglobin-unit-converter' \
-H 'Content-Type: application/json' \
-d '{"value":12,"sourceUnit":"gdl","targetUnit":"mmol","decimalPlaces":2}'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/hemoglobin-unit-converter| Name | Type | Required | Description |
|---|---|---|---|
| value | number | Yes | The hemoglobin value to convert. |
| sourceUnit | select | Yes | The unit of the input value. |
| targetUnit | select | Yes | The unit to convert into. |
| 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-hemoglobin-unit-converter": {
"name": "hemoglobin-unit-converter",
"description": "Convert hemoglobin between g/dL, g/L, and mmol/L. Factor 0.6206 (g/dL→mmol/L, IFCC/IUPAC monomer, 16.1145 g/mmol); × 10 for g/L. Derived from WHO 2011, IFCC/IUPAC, Young 1987, StatPearls. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=hemoglobin-unit-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": "hemoglobin-unit-converter",
"arguments": {
"value": 12,
"sourceUnit": "gdl",
"targetUnit": "mmol",
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]