Converts meters to feet with precise calculations. Available via MCP in Cursor and other AI editors, or as REST API at `/v1/convert/length/m-to-ft`. Pass a meter value, get exact feet conversion using the standard 3.28084 multiplier. Essential for construction, real estate, and engineering workflows where imperial conversions matter.
curl "https://tinyfn.io/v1/convert/length/m-to-ft" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/length/m-to-ft', {
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/length/m-to-ft',
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"
}
}
}
}
Use the MCP tool in Cursor, Claude Code, or Windsurf by providing the meter value. The tool returns precise feet calculations using the standard conversion factor.
Meters × 3.28084 = Feet. This tool uses the exact international foot definition for consistent results across applications.
Yes, the tool handles decimal inputs like 2.5 meters and returns precise fractional feet values, not rounded approximations.
GET `/v1/convert/length/m-to-ft` with the meter value as a parameter. Returns JSON with the exact feet conversion.
Uses the official international foot definition (0.3048 meters), providing deterministic results that match engineering standards and building codes.
Get your free API key and start using Meters To Feet in seconds.
Get Free API Key