Health
Convert total serum calcium between mg/dL and mmol/L. Factor 0.25 (atomic weight 40.078; × 4.0 inverse). Does not albumin-correct. Derived from Payne 1973, Young 1987, StatPearls, Endocrine Society. Not medical advice.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/calcium-unit-converter' \
-H 'Content-Type: application/json' \
-d '{"value":9.5,"sourceUnit":"mgdl","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/calcium-unit-converter| Name | Type | Required | Description |
|---|---|---|---|
| value | number | Yes | The total calcium value to convert (not albumin-corrected). |
| 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-calcium-unit-converter": {
"name": "calcium-unit-converter",
"description": "Convert total serum calcium between mg/dL and mmol/L. Factor 0.25 (atomic weight 40.078; × 4.0 inverse). Does not albumin-correct. Derived from Payne 1973, Young 1987, StatPearls, Endocrine Society. Not medical advice.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=calcium-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": "calcium-unit-converter",
"arguments": {
"value": 9.5,
"sourceUnit": "mgdl",
"targetUnit": "mmol",
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]