Conversion Utilities

Meters Per Second To Mph

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.

API Endpoint

GET /v1/convert/speed/mps-to-mph

Code Examples

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)

Use via MCP

Add to your AI agent

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"
      }
    }
  }
}

Learn more about MCP setup →

FAQ

How do I convert meters per second to mph using MCP?

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.

What's the conversion formula from m/s to mph?

Multiply m/s by 2.23693629. This accounts for 3600 seconds/hour and 1609.344 meters/mile conversion factors.

How many decimal places does the mph conversion return?

Returns full precision floating-point results. You get exact mathematical conversions, not rounded approximations.

Can I batch convert multiple m/s values to mph?

The endpoint handles single conversions. For batch processing, make multiple API calls or use MCP tool iterations in your AI workflow.

What m/s input range does the converter support?

Accepts any positive numeric value. Works for everything from walking speeds (1.4 m/s) to supersonic velocities (340+ m/s).

Try Meters Per Second To Mph Now

Get your free API key and start using Meters Per Second To Mph in seconds.

Get Free API Key