Math & Numbers
Calculate buffer solution pH with the Henderson-Hasselbalch equation, or find the acid/base ratio needed for a target pH.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ph-buffer-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"find-ph","bufferSystem":"phosphate","pKa":7.21,"acidConc":0.1,"baseConc":0.1,"targetPh":7.4,"totalConc":0.1,"temperature":25,"decimalPlaces":3}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ph-buffer-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| bufferSystem | select | No | — |
| pKa | number | No | Required for Custom buffer; auto-filled for presets (you can still override). |
| acidConc | number | No | Concentration of the weak acid (protonated) form. |
| baseConc | number | No | Concentration of the conjugate base (deprotonated) form. |
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-ph-buffer-calculator": {
"name": "ph-buffer-calculator",
"description": "Calculate buffer solution pH with the Henderson-Hasselbalch equation, or find the acid/base ratio needed for a target pH.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ph-buffer-calculator",
"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": "ph-buffer-calculator",
"arguments": {
"mode": "find-ph",
"bufferSystem": "phosphate",
"pKa": 7.21,
"acidConc": 0.1,
"baseConc": 0.1,
"targetPh": 7.4,
"totalConc": 0.1,
"temperature": 25,
"decimalPlaces": 3
}
}
}Questions or issues? Contact [email protected]
| targetPh | number | No | Used in 'Find ratio' mode. |
| totalConc | number | No | Used in 'Find ratio' mode to split acid/base amounts. |
| temperature | number | No | Tris pKa is corrected for temperature; other buffers use the 25 °C value. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}