Math & Numbers
Calculate reaction velocity with Michaelis-Menten, estimate Km/Vmax via Lineweaver-Burk, and model enzyme inhibition.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/enzyme-kinetics-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"velocity","vmax":1.5,"km":0.5,"substrate":0.5,"dataPairs":"Format: S,v per pair (space/newline separated).\nExample:\n0.1,0.2\n0.2,0.33\n0.5,0.6\n1,0.8\n2,1.0","inhibition":"none","inhibitorConc":0,"ki":0,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/enzyme-kinetics-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| vmax | number | No | Maximum reaction velocity at saturating substrate. |
| km | number | No | Substrate concentration at half-maximal velocity. |
| substrate | number | No | — |
| dataPairs | textarea | No | Used in 'Find Km & Vmax' mode. At least 2 pairs, both > 0. |
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-enzyme-kinetics-calculator": {
"name": "enzyme-kinetics-calculator",
"description": "Calculate reaction velocity with Michaelis-Menten, estimate Km/Vmax via Lineweaver-Burk, and model enzyme inhibition.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=enzyme-kinetics-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": "enzyme-kinetics-calculator",
"arguments": {
"mode": "velocity",
"vmax": 1.5,
"km": 0.5,
"substrate": 0.5,
"dataPairs": "Format: S,v per pair (space/newline separated).\nExample:\n0.1,0.2\n0.2,0.33\n0.5,0.6\n1,0.8\n2,1.0",
"inhibition": "none",
"inhibitorConc": 0,
"ki": 0,
"decimalPlaces": 4
}
}
}| inhibition | select | No | — |
| inhibitorConc | number | No | — |
| ki | number | No | — |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]