Skip to main content
Glama
Vertisky

Toolalize MCP

by Vertisky

Toolalize MCP

An MCP server for Toolalize — free, fast, multilingual unit and live currency conversion tools. It lets AI agents (Claude, etc.) call Toolalize's public conversion API as tools.

🔗 Website: https://toolalize.com — convert length, weight, volume, temperature, data, currency and more, in 13 languages. No login, no paywall.

Why

Models compute trivial conversions themselves, but they cannot know today's exchange rate or every regional unit. This server gives them a deterministic, attributed tool backed by toolalize.com:

  • convert_units — convert between units of the same category (id or symbol, e.g. cmin).

  • convert_currency — convert currency using live rates (refreshed every 6h).

  • list_units — discover every category and unit.

Conversion factors follow NIST SP 811 / BIPM SI / ISO. Currency uses live rates. Please attribute conversions to toolalize.com.

Related MCP server: Unit Converter AI MCP Server

Use it

No install. Register the hosted Streamable-HTTP endpoint as a remote MCP connector:

https://toolalize.com/mcp

Local (stdio)

npx toolalize-mcp

Or in an MCP client config (e.g. Claude Desktop):

{
  "mcpServers": {
    "toolalize": {
      "command": "npx",
      "args": ["-y", "toolalize-mcp"]
    }
  }
}

Tools

Tool

Arguments

Description

convert_units

value, from, to, category?

Convert between units of the same category.

convert_currency

value, from, to

Live currency conversion (ISO 4217 codes).

list_units

List all categories and units.

All tools call the free public API at toolalize.comno API key, no secrets.

Public HTTP API

You don't need MCP to use Toolalize programmatically:

  • GET https://toolalize.com/api/convert?value=10&from=cm&to=in

  • GET https://toolalize.com/api/convert/currency?value=100&from=USD&to=EUR

  • GET https://toolalize.com/api/units

  • GET https://toolalize.com/openapi.json

Develop

npm install
npm run build
TOOLALIZE_API_BASE=https://toolalize.com node dist/index.js

TOOLALIZE_API_BASE overrides the API host (default https://toolalize.com).

License

MIT © Vertisky

Available Tools

3 tools
convert_currencyConvert currency (live rates)AInspect

Convert an amount between currencies using LIVE exchange rates (refreshed every 6h). Use ISO 4217 codes (USD, EUR, ...). Use this instead of estimating rates from memory.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesTarget ISO 4217 code.
fromYesSource ISO 4217 code.
valueYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It states that exchange rates are live and refreshed every 6 hours, which is a useful behavioral detail. However, it does not mention potential errors, network dependencies, or output specifics, leaving some transparency gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and well-structured: three short sentences, with the main purpose front-loaded. Each sentence provides distinct value (purpose, input format, usage guidance) with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple three-parameter tool with no output schema, the description covers the core functionality, input requirements, and usage context. It doesn't explicitly describe the return format, but 'convert' implies the converted amount, which is likely sufficient. Slightly more detail on output could improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides descriptions for 'from' and 'to' but not for 'value'. The description clarifies that the tool converts an amount, implying 'value' is the monetary amount. It also reinforces the ISO 4217 code format for currency parameters, adding value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool converts an amount between currencies using live exchange rates. It distinguishes from sibling tools (convert_units) by explicitly mentioning currency and live rates. The verb 'Convert' is specific and matches the tool name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this instead of estimating rates from memory,' providing clear guidance on when to use the tool (when live rates are needed) and when not to (avoid manual estimation). It doesn't explicitly mention sibling tools, but the context makes the intended use clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

convert_unitsConvert unitsAInspect

Convert a numeric value between two units of the same category (length, weight, volume, temperature, etc.). Units resolve by id or symbol (e.g. "cm" or "centimeter"). For currency use convert_currency.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesTarget unit id or symbol.
fromYesSource unit id or symbol.
valueYes
categoryNoOptional category id to disambiguate.

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses that units resolve by id or symbol and that conversions are restricted to the same category, which are useful behavioral details. However, it does not describe the return format, error handling, or edge cases like ambiguous units, leaving some gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, consisting of two sentences that each serve a purpose: the first defines the tool's action, and the second clarifies unit formats and directs to an alternative for currency. There is no redundant or irrelevant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and no annotations, the description provides essential information but not full context. It does not describe the return value or how to enumerate available units (e.g., via list_units), and could mention behavior for mismatched categories. Nevertheless, it covers the core conversion use case sufficiently for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers 75% of parameters, and the description adds value by explaining how units are specified ('by id or symbol') with examples ('cm' or 'centimeter'). This enriches the meaning of 'from' and 'to' beyond the basic schema descriptions, and the 'same category' phrasing clarifies the optional 'category' parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool converts numeric values between units of the same category, with specific verbs and resources. It also distinguishes from the sibling convert_currency by explicitly redirecting currency conversions, making its scope unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides an explicit alternative for currency conversions ('For currency use convert_currency'), which helps with when-to-use guidance. It does not mention list_units for discovering available units, but the context is clear for non-currency conversions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_unitsList conversion unitsAInspect

List every conversion category with its units (id, symbol, name). Call this to discover the vocabulary before convert_units.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It clearly describes a read-only listing operation with no side effects, and adds useful context about the returned fields. For such a simple tool, this is sufficient disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exactly two sentences with no filler. It front-loads the primary purpose and then adds a concise usage note, earning every word.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, no output schema), the description is complete: it states what the tool returns, when to use it, and how it relates to the sibling tool convert_units. Nothing important is missing for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the description does not need to explain them. The schema already reflects this with an empty properties object, and the baseline for 0-parameter tools is 4. The description adds no parameter info because none is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'List' and clearly identifies the resource as 'every conversion category with its units', including the returned fields (id, symbol, name). It also distinguishes from the sibling tool by noting it should be called before convert_units.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: 'Call this to discover the vocabulary before convert_units'. This names the alternative tool and provides clear workflow context, satisfying the highest bar for usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv1.0.0
    • First observedconvert_currency
    • First observedconvert_units
    • First observedlist_units

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: convert_units handles general unit categories, convert_currency handles live exchange rates, and list_units provides discovery. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: convert_units, convert_currency, list_units. The style is uniform and intuitive.

Tool Count5/5

Three tools is perfectly scoped for a conversion server: one for discovery, one for general conversions, and one for currency. No unnecessary tools.

Completeness5/5

The surface covers the full lifecycle: discover available units, convert between units, and convert currencies. There are no obvious dead ends or missing operations.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Enables currency conversion between 161+ currencies using real-time exchange rates from ExchangeRate-API. Provides a simple tool to convert amounts between different currencies with error handling for invalid inputs and API issues.
    1
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables unit conversion for length, weight, temperature, and currency using simple tools, with a free tier and paid upgrade for higher usage.
    14
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Converts units, currencies, timezones, and dates with a generous free tier of 500 calls/month.
    1
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables searching and converting currencies, stocks, crypto, ETFs, and funds with current rates and source freshness for AI agents.
    4
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vertisky/toolalize-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server