Converts milliliters to US cups with precise decimal accuracy. Use via MCP in Cursor or other AI editors, or call GET /v1/convert/volume/ml-to-cups?ml=250 directly. Returns 250ml = 1.057 cups using the standard US conversion (1 cup = 236.588ml). Essential for recipe scaling and international cooking conversions.
curl "https://tinyfn.io/v1/convert/volume/ml-to-cups" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/volume/ml-to-cups', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/convert/volume/ml-to-cups',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's conversion tools:
{
"mcpServers": {
"tinyfn-conversion": {
"url": "https://tinyfn.io/mcp/conversion",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Call the ml-to-cups tool with your milliliter value. The AI agent will return the precise US cup equivalent without rounding errors.
1 US cup equals exactly 236.588237 milliliters. This tool uses the official NIST conversion standard for accuracy.
US cups only. Metric cups are 250ml exactly, while US cups are 236.588ml. Different tools handle different cup standards.
Yes, the tool accepts decimal inputs and returns precise decimal cup measurements. Perfect for scaling recipes accurately.
The tool handles edge cases gracefully, returning 0 cups for 0ml and appropriate error handling for invalid inputs.
Get your free API key and start using Milliliters To Cups in seconds.
Get Free API Key