Converts meters per second to miles per hour with precise mathematical accuracy. Access via MCP in Cursor or Windsurf, or call GET /v1/convert/speed/mps-to-mph with your m/s value. Example: 10 m/s = 22.369 mph. Uses the exact conversion factor 2.23693629 for consistent results across scientific calculations.
curl "https://tinyfn.io/v1/convert/speed/mps-to-mph" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/speed/mps-to-mph', {
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/speed/mps-to-mph',
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 mps-to-mph tool with your speed value. In Claude Code or Cursor, it returns the exact mph equivalent instantly without manual calculation.
Multiply m/s by 2.23693629. This accounts for 3600 seconds/hour and 1609.344 meters/mile conversion factors.
Returns full precision floating-point results. You get exact mathematical conversions, not rounded approximations.
The endpoint handles single conversions. For batch processing, make multiple API calls or use MCP tool iterations in your AI workflow.
Accepts any positive numeric value. Works for everything from walking speeds (1.4 m/s) to supersonic velocities (340+ m/s).
Get your free API key and start using Meters Per Second To Mph in seconds.
Get Free API Key