80% Silver Melt Calculator
Server Details
Live junk silver and gold melt value calculator: spot price, coins, sterling. USD/CAD.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 3 tools
calculate_coin_melt is specifically for junk/constitutional silver coins using coin type, quantity, or face value, while calculate_melt_value covers arbitrary weight and purity. get_spot_price is clearly distinct. There is mild overlap between the two melt calculators, but their descriptions make the intended use clear.
All tool names follow a consistent verb_noun snake_case pattern: calculate_coin_melt, calculate_melt_value, get_spot_price. The calculate_* tools share a meaningful action prefix, and get_spot_price uses the same predictable naming style.
Three tools is well-scoped for a focused melt-value calculator: one for live pricing, one for coin-specific melt values, and one for generic metal melt values. Each tool has a distinct job and none feel redundant or excessive.
The toolset covers the full workflow an agent needs: fetch current spot prices, calculate melt value for recognized junk silver coins, and calculate melt value for arbitrary silver/gold by weight and purity. There are no obvious missing operations or dead ends for the stated domain.
Available Tools
3 toolscalculate_coin_meltAInspect
Calculate the melt value of junk silver coins (constitutional silver) at the current silver spot price: US 90% pre-1965 dimes/quarters/halves/dollars, US 40% Kennedy halves (1965–1970), US 35% war nickels (1942–1945), Canadian 80% (1920–1966/67) and Canadian 50% (1967–68) coins. Provide the coin type plus either a quantity of coins or a total face value (e.g. face_value 2.50 for a roll of dimes). Returns total actual silver weight (ASW) in troy oz and grams, and melt value in USD and CAD.
| Name | Required | Description | Default |
|---|---|---|---|
| quantity | No | Number of coins (provide this or face_value) | |
| coin_type | Yes | Coin preset id. us_90_dime = US 90% dime (pre-1965), 0.0723 ozt ASW each; us_90_quarter = US 90% quarter (pre-1965), 0.1808 ozt ASW each; us_90_half = US 90% half dollar (pre-1965), 0.3617 ozt ASW each; us_90_dollar = US 90% dollar (Morgan/Peace), 0.7734 ozt ASW each; us_40_half = US 40% half dollar (Kennedy), 0.1479 ozt ASW each; us_35_nickel = US 35% war nickel, 0.05626 ozt ASW each; ca_80_dime = Canadian 80% dime, 0.06 ozt ASW each; ca_80_quarter = Canadian 80% quarter, 0.15 ozt ASW each; ca_80_half = Canadian 80% half dollar, 0.3 ozt ASW each; ca_80_dollar = Canadian 80% dollar, 0.6 ozt ASW each; ca_50_dime = Canadian 50% dime, 0.0375 ozt ASW each; ca_50_quarter = Canadian 50% quarter, 0.0937 ozt ASW each | |
| face_value | No | Total face value in the coin's own currency, e.g. 2.50 for a roll of dimes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It discloses that the calculation uses the current silver spot price and returns total ASW in troy oz and grams plus melt value in both USD and CAD. It does not discuss error cases or spot-price sourcing, but the core behavior and outputs are clearly described.
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 long but earns its length: the coin-type enumeration is redundant with the schema yet strengthens purpose clarity, and the usage and return paragraphs are tightly written. It is well-structured and front-loads the core action, though it could trim the repeated coin list slightly.
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?
There is no output schema, so the description correctly explains the return values (ASW in troy oz/grams, melt value in USD/CAD) and the input pattern (coin_type + quantity OR face_value). It lacks an explicit statement about what happens if both quantity and face_value are provided, but for a tool this size the description is substantially 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% with detailed per-preset ASW values, so the baseline is 3. The description adds meaningful usage semantics beyond the schema: it clarifies that quantity and face_value are alternatives ('either... or'), gives a concrete example ('face_value 2.50 for a roll of dimes'), and explains that coin_type selects the preset. This elevates the score to 4.
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 'Calculate' and the resource 'melt value of junk silver coins', listing all supported coin types with their composition and date ranges. It is specific enough to be distinguished from the more generic sibling names, but it does not explicitly name or differentiate from 'calculate_melt_value', so it falls short of the strict 'distinguishes from siblings' bar.
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 gives concrete usage context: it scopes the tool to junk/constitutional silver presets and instructs the agent to provide 'the coin type plus either a quantity of coins or a total face value', with an example. It does not explicitly exclude alternatives or say when NOT to use this tool, but the domain is clearly bounded.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calculate_melt_valueAInspect
Calculate the melt value (intrinsic bullion value) of silver or gold from weight and purity — e.g. sterling silver flatware, .999 rounds, scrap gold. Returns melt value in both USD and CAD plus the fine metal weight. Purity is a fraction: 0.925 = sterling, 0.999 = fine silver, 0.9 = US coin silver. Weight units: g (grams), ozt (troy ounces), oz (avoirdupois ounces — postal-scale ounces).
| Name | Required | Description | Default |
|---|---|---|---|
| unit | Yes | Weight unit: g = grams, ozt = troy ounce, oz = avoirdupois ounce | |
| metal | Yes | Which metal | |
| purity | Yes | Fineness as a fraction, e.g. 0.925 for sterling silver | |
| weight | Yes | Gross weight of the item(s) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses the output format (USD and CAD amounts plus fine metal weight) and clarifies ambiguous semantics like 'oz = avoirdupois ounces — postal-scale ounces' and purity fraction meanings. It does not mention reliance on live spot prices or rounding behavior, but for a calculator this is adequate.
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 sentences with no filler: the first states purpose, the second states what is returned, the third clarifies parameter semantics. The most critical information is front-loaded and every sentence contributes.
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 4-parameter calculator with no output schema, the description is nearly complete: it explains the purpose, all parameter meanings, example purities, and output values. The only missing elements are an explicit pointer to calculate_coin_melt for coin-specific cases and a note on the spot-price source, but these are minor for a competent agent.
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%, so the baseline is 3. The description adds meaningful value beyond the schema by giving concrete purity examples (0.925 sterling, 0.999 fine, 0.9 US coin silver) and disambiguating the unit 'oz' as avoirdupois postal-scale ounces, which is not evident from the enum alone.
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 opens with a specific verb and resource: 'Calculate the melt value (intrinsic bullion value) of silver or gold from weight and purity.' The examples (sterling silver flatware, .999 rounds, scrap gold) further clarify scope and distinguish it from siblings like calculate_coin_melt (coin-specific) and get_spot_price (price lookup).
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 establishes clear applicability: use when you have weight and purity for silver or gold, with concrete item examples. However, it does not explicitly mention when not to use it or point to the alternatives (e.g., calculate_coin_melt for coin-specific valuations), so it stops short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_spot_priceAInspect
Get the current spot price of silver and gold in USD and CAD per troy ounce. Use this to answer questions about the silver spot price, gold spot price, or the USD→CAD exchange rate used for melt value calculations. Prices are live, cached up to 15 minutes. All prices are per troy ounce (ozt).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it discloses that prices are live, cached up to 15 minutes, and quoted per troy ounce in USD and CAD. This gives the agent useful behavioral expectations, though it does not describe the exact response shape or field names since no output schema is provided.
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 sentences, all informative and front-loaded with the core purpose, followed by usage guidance and key caveats. No fluff or redundant restatement of the tool name.
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 zero-parameter getter, the description covers the subject metals, currencies, unit of measure, and data freshness. It is slightly incomplete because it does not hint at the output structure or field names, but the lack of parameters and the simplicity of the tool make this a minor gap.
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 the baseline is 4. There is nothing for the description to clarify about parameter semantics, and the schema coverage is effectively complete because no parameters exist.
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 states a specific verb ('Get'), a precise resource (current spot price), and scopes it to silver and gold in USD and CAD per troy ounce. This clearly differentiates it from the sibling calculate_coin_melt and calculate_melt_value tools, which perform calculations rather than retrieve live prices.
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 explicitly says to use this tool for questions about silver spot price, gold spot price, or the USD→CAD exchange rate used in melt value calculations. It provides clear context for when the tool is appropriate, though it does not explicitly state when not to use it or name a preferred alternative.
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.
3 tool updates
- First observed
calculate_coin_melt - First observed
calculate_melt_value - First observed
get_spot_price
Related MCP Connectors
Live gold & silver prices for 37 countries. Tamara/Tabby installment calculators for Saudi Arabia.
Precious metals AI analyst with 12 tools — prices, portfolio, chat, receipts, and more.
Prix live de 11 dealers et specs complètes de 80+ pièces d'or et d'argent, pour agents IA.
Gold/silver/copper spot & futures, per-country dealer prices, options-implied probability surface.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables access to live precious metals prices, historical data, market intelligence, and portfolio management with AI/LLM integration.-

cinderfi-mcpofficial
FlicenseNot gradedqualityCmaintenanceTax-aware retirement planning for Canada and the US. CPP/OAS and Social Security timing, RRSP/TFSA/401k/IRA projections, Monte Carlo simulation, withdrawal order optimization, and historical backtesting against 150 years of market data.2-
Arzbin MCP Serverofficial
AlicenseNot gradedqualityCmaintenanceLive Iran exchange rates, gold, crypto, and Toman/Rial market data for AI agents.2MIT- AlicenseAqualityBmaintenanceReal-time Argentine exchange rates for AI agents. Dollar blue, oficial, MEP, CCL, crypto rates plus currency conversion and spread calculator.64 npm5MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.