Developer API & AI Tool Integration
All Convert All converters are available as an MCP (Model Context Protocol) server. Connect Claude Desktop, Claude Code, or any MCP-compatible AI agent to get instant, accurate unit conversions and live exchange rates.
https://mcp.unitconvertall.com/mcpQuick Start — Claude Desktop
Add this to your claude_desktop_config.json file to connect Convert All to Claude Desktop:
{
"mcpServers": {
"unitconvertall": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.unitconvertall.com/mcp"]
}
}
}Then restart Claude Desktop. You can now ask Claude things like: "How many liters are in 5 gallons?" and Claude will call our converter automatically.
Available Tools
Convert between distance/length units.
{
"from": "mile",
"to": "kilometer",
"value": 26.2
}Convert between weight and mass units.
{
"from": "pound",
"to": "kilogram",
"value": 150
}Convert between temperature scales.
{
"from": "fahrenheit",
"to": "celsius",
"value": 98.6
}Convert between volume units.
{
"from": "gallon_us",
"to": "liter",
"value": 1
}Convert between data storage units (decimal and binary).
{
"from": "gigabyte",
"to": "mebibyte",
"value": 1
}Get live currency exchange rates from the European Central Bank.
{
"from": "USD",
"to": "EUR",
"value": 100
}Example AI Prompts
Once connected, you can ask your AI assistant these questions and it will use our tools:
- "How far is a marathon in kilometers?"
- "Convert 70 kg to pounds and stones."
- "What is 37°C in Fahrenheit?"
- "How many liters are in 5 gallons?"
- "Convert 256 GB to GiB."
- "What is 1000 USD in EUR and JPY right now?"
Protocol Details
Embed Any Converter
All 40+ converters can also be embedded in any website via iframe — no account required:
<iframe src="https://unitconvertall.com/distance-converter" width="100%" height="520" style="border:none;border-radius:12px;" loading="lazy"> </iframe>
Deep-link format: https://unitconvertall.com/{converter}?from={unit}&to={unit}&value={number}