Unit & Currency Converter
Server Details
60+ units, live FX, timezones, and date arithmetic for AI agents.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- guptaprakhariitr/unit-converter-mcp
- GitHub Stars
- 1
- Server Listing
- unit-converter-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 6 of 6 tools scored.
Each tool has a distinct purpose: currency conversion, timezone conversion, unit conversion, date difference calculation, and listing supported entities. There is no overlap, so an agent can easily choose the correct tool.
Tools follow a consistent verb_noun pattern (e.g., convert_currency, list_timezones). The only minor deviation is 'date_diff' which uses noun_noun, but it is still clear and fits the pattern of other tools.
With 6 tools, the set is well-scoped for a unit and currency converter. It covers all necessary operations without being too sparse or overwhelming.
The tools provide full conversion capabilities (currency, timezone, unit), date difference calculation, and listing helpers for timezones and units. There are no obvious gaps for the server's stated purpose.
Available Tools
6 toolsconvert_currencyAInspect
Convert an amount between currencies. Live FX from exchangerate.host (free, no key). Pass an optional ISO date for historical rates. Returns {amount, from, to, rate, date, source}.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ISO 4217 code, e.g. 'INR'. | |
| date | No | Optional ISO date YYYY-MM-DD for historical rate. | |
| from | Yes | ISO 4217 code, e.g. 'USD'. | |
| amount | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the data source (exchangerate.host), that it is free and requires no API key, and that an optional date can be used for historical rates. It also mentions the return format, providing useful behavioral context. Minor omission: no mention of rate limits or API reliability.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences with no wasted words. The first sentence immediately states the purpose, followed by key usage details. Every sentence provides necessary information efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description explains the return structure in detail. The tool is simple with 4 parameters, all covered in the description. Sibling tools are distinct, and the description sufficiently equips an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 75% coverage; the description adds context for the 'date' parameter by noting it's an optional ISO date for historical rates. For the other parameters (amount, from, to), the description adds no new detail beyond the schema's own descriptions, which are already clear (e.g., 'ISO 4217 code'). Overall, value added is moderate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Convert an amount between currencies.' as the primary action, with specific verb and resource. It also mentions live FX and historical rates, but does not explicitly differentiate from sibling tools like convert_timezone or convert_unit, though the domain is distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for currency conversion and provides context (live FX from exchangerate.host, free, no key, optional date). However, it does not specify when not to use this tool or suggest alternatives, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_timezoneAInspect
Re-anchor an ISO datetime from one IANA timezone to another. Accepts the common timezones (UTC, America/, Europe/, Asia/Kolkata, Asia/Tokyo, etc.). Returns the equivalent ISO datetime in the target timezone + the offset difference in hours.
| Name | Required | Description | Default |
|---|---|---|---|
| iso | Yes | Input datetime, ISO 8601. | |
| to_tz | Yes | Target IANA timezone. | |
| from_tz | Yes | Source IANA timezone. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It states the return format (ISO datetime and offset difference) but does not mention error handling for invalid timezones or ISO formats, nor does it discuss limitations on timezone acceptance.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exceptionally concise with two sentences, each sentence serving a clear purpose (action + return value). No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter tool with no output schema or annotations, the description covers the main behavior well. It could mention error scenarios or handling of invalid inputs, but overall it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, providing a baseline of 3. The description adds value by listing acceptable timezones (UTC, America/*, etc.), which aids parameter understanding beyond the schema's generic descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool re-anchors an ISO datetime between IANA timezones, lists accepted common timezones, and specifies the return value. It distinguishes itself from sibling tools like date_diff and list_timezones.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool (to convert timezones) and provides examples of accepted timezones. However, it lacks explicit guidance on when not to use it or mention of alternatives, such as using date_diff for differences.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_unitAInspect
Convert a numeric value between units. Categories: length, mass, volume, area, time, temperature, energy, speed, data, pressure. Accepts canonical names ('meter', 'pound') or common aliases ('m', 'lb'). Returns {input, output, category}.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Target unit. | |
| from | Yes | Source unit, e.g. 'meter' or 'm'. | |
| value | Yes | Numeric value to convert. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses the return format ({input, output, category}), that it accepts canonical names or aliases, and lists categories. This provides useful behavioral context, though it omits auth or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences with the action front-loaded. No redundancy, every sentence adds value. Ideal length for a conversion tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the return format (no output schema), lists categories, and covers aliases. For a simple conversion tool with 3 required params, this is fairly complete. Lacks error handling details, but acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds context about accepted value formats and categories but does not add per-parameter details beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Convert a numeric value between units,' specifies categories, and mentions accepted names and aliases. This clearly distinguishes it from sibling tools like convert_currency and convert_timezone, making the purpose very specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates when to use (for unit conversion) but does not explicitly state when not to use or point to alternative tools. Given the sibling context, an agent can infer, but the description lacks direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
date_diffAInspect
Calculate the difference between two ISO dates in the requested unit (ms / seconds / minutes / hours / days / weeks).
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Later ISO date/datetime. | |
| from | Yes | Earlier ISO date/datetime. | |
| unit | No | days |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must cover behavior. It describes the core operation but lacks details on error handling, timezone assumptions, sign of result, or validation of ISO format. Adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no redundancy: efficiently states purpose and parameters. Perfectly front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema and description omits return value format or behavior on invalid input. For a simple calculator this is acceptable but leaves some ambiguity, given no annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67%; description adds mention of units (ms, seconds, etc.) but does not significantly enhance understanding beyond the schema's parameter descriptions and enum values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Calculate the difference between two ISO dates in the requested unit' with a specific verb and resource, distinguishing it from sibling tools like convert_currency or list_timezones.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for date difference calculations but does not provide explicit guidance on when to use versus alternatives, nor does it note prerequisites or ordering constraints beyond what the schema indicates.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_timezonesAInspect
List supported timezones + UTC offsets.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the basic function (listing timezones and offsets) but lacks details on behavioral traits like pagination or auth requirements. The description is minimal but not misleading.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no waste. Every word serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and no annotations, the description is adequate for a simple list tool. It covers the essential information, though it could clarify the output format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so baseline is 4. The description adds no parameter information, but none is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and the resource 'supported timezones + UTC offsets'. It distinguishes from siblings like convert_timezone and list_units, which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide explicit guidance on when to use this tool versus alternatives. Usage is implied as a simple enumeration, but no when-not-to or context is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_unitsAInspect
List all supported units grouped by category. Use this when you're not sure what unit names the converter accepts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, but the description adequately implies a safe read-only operation. It doesn't elaborate on return format or limitations, but for a simple listing tool the disclosure is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded, with no extraneous information. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and a straightforward task, the description fully covers purpose and usage context. It is complete for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, so schema coverage is 100%. The description need not add parameter details; the note about grouping by category hints at output structure but not required for parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'List' and resource 'all supported units grouped by category', clearly distinguishing it from conversion and timezone tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'Use this when you're not sure what unit names the converter accepts', providing clear context and implicitly guiding away from alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.