Converts units across length, weight, temperature, volume, speed, and data sizes through a remote API endpoint. The server uses server-sent events transport and requires x402 micropayments, so you'll need to handle the payment integration to use it. The GitHub repo is pretty bare, just configuration files without exposed implementation details or documentation about available conversion functions. You'd reach for this if you want unit conversion as a service rather than a local library, though the micropayment requirement means every conversion call has a cost attached. The remote API setup means no local dependencies, but also no visibility into what conversions are actually supported or how precise they are.
Public tool metadata for what this MCP can expose to an agent.
utility_convert_unitsUse this when you need to convert between measurement units. Returns the conversion result with formula in JSON. Returns: 1. result (converted value) 2. from and to units 3. inputValue 4. formula (hu4 paramsUse this when you need to convert between measurement units. Returns the conversion result with formula in JSON. Returns: 1. result (converted value) 2. from and to units 3. inputValue 4. formula (hu
tostringfromstringvaluenumbercategorystringConvert between units -- length, weight, temperature, volume, speed, data storage. Formula included. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.
Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.
Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):
{
"mcpServers": {
"unit-converter": {
"url": "https://unit-converter.api.klymax402.com/mcp"
}
}
}
curl -X POST "https://unit-converter.api.klymax402.com/api/convert" \
-H "Content-Type: application/json" \
-d '{"value":"1","from":"...","to":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response body
Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.
| Tool | Method | Path | Price | Description |
|---|---|---|---|---|
utility_convert_units | POST | /api/convert | $0.001 | Convert a value between measurement units |
utility_convert_unitsUse this when you need to convert between measurement units. Returns the conversion result with formula in JSON.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
value | number | yes | The numeric value to convert |
from | string | yes | Source unit (e.g. km, lb, celsius, l, mph, MB) |
to | string | yes | Target unit (e.g. mi, kg, fahrenheit, gal, km/h, GB) |
category | string | no | Optional category hint: length, weight, temperature, volume, speed, data |
Example response:
{"inputValue":100,"from":"km","to":"mi","result":62.1371,"formula":"100 km * 0.621371 = 62.1371 mi","category":"length"}
When to use: unit conversions in calculations, data analysis, scientific computing, recipe scaling, and engineering applications.
Not for: currency conversion (use finance_convert_currency), timezone conversion (use utility_convert_timezone), stock prices (use finance_get_stock_price).
eip155:8453)100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.
MIT
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json