Toolalize MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TOOLALIZE_API_BASE | No | Overrides the API host (default https://toolalize.com) | https://toolalize.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| convert_unitsA | 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. |
| convert_currencyA | 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. |
| list_unitsA | List every conversion category with its units (id, symbol, name). Call this to discover the vocabulary before convert_units. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
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.
All tool names follow a consistent verb_noun pattern: convert_units, convert_currency, list_units. The style is uniform and intuitive.
Three tools is perfectly scoped for a conversion server: one for discovery, one for general conversions, and one for currency. No unnecessary tools.
The surface covers the full lifecycle: discover available units, convert between units, and convert currencies. There are no obvious dead ends or missing operations.