Skip to main content
Glama

Calculate.co.nz NZ Calculators

nz_hourly_to_salary_calculator

Convert a New Zealand hourly rate into a salary, before and after tax.

Use for: 'what is $32 an hour as a salary', 'how much do I take home on
$28/hr', 'is $75,000 better than $36 an hour', 'what is my hourly rate
really worth after tax'.

Gives gross weekly, fortnightly, monthly and annual, then PAYE, ACC,
KiwiSaver and student loan, then take-home.

Args:
    hourly_rate: Gross pay per hour in NZD.
    hours_per_week: Ordinary hours a week. 40 is full time in NZ.
    weeks_per_year: Weeks actually paid. Use fewer for seasonal or academic
        work; 52 otherwise.
    kiwisaver_rate: A DECIMAL, so 0.03 for 3%. Passing 3 is rejected.
    has_student_loan: Repayments at 12% above the annual threshold.

Returns:
    Gross at each frequency, every deduction, net annual, net weekly, and
    effective_hourly_after_tax.

    Note the two weekly figures answer different questions: net_weekly
    always divides by 52, so it is what arrives each week across the year,
    while effective_hourly_after_tax uses the hours actually worked. Quote
    the effective rate when comparing a wage job to a salaried one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hourly_rateYes
hours_per_weekNo
kiwisaver_rateNo
weeks_per_yearNo
has_student_loanNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and delivers rich behavioral disclosure: the net_weekly vs effective_hourly_after_tax distinction (dividing by 52 vs actual hours worked), the decimal-only kiwisaver_rate with 'Passing 3 is rejected', and the 12%-above-threshold student loan repayment. These are precisely the traps an agent would otherwise stumble into. No annotation contradiction exists.

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?

Approximately 230 words organized into clear sections (purpose, use-for, Args, Returns) with the core sentence front-loaded. The four query examples overlap slightly but each earns its place as pattern-matching signal for an agent.

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?

For a 5-parameter financial calculator with no annotations and no output schema, the description covers everything required for correct invocation: full parameter semantics, the output shape (gross at each frequency, every deduction, net annual/weekly, effective hourly), and the caveat about interpreting the two weekly figures. The only omission is a tax-year/rates-currency reference, which isn't needed to call the tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate — and it covers all 5 parameters with meaning the schema lacks: NZD currency for hourly_rate, '40 is full time in NZ' for hours_per_week, seasonal/academic work guidance for weeks_per_year, the decimal-format rejection for kiwisaver_rate, and the 12% threshold for has_student_loan. Every parameter is semantically enriched.

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?

Opens with a specific verb+resource: 'Convert a New Zealand hourly rate into a salary, before and after tax.' The stated scope — gross and net at weekly, fortnightly, monthly and annual frequencies plus PAYE, ACC, KiwiSaver and student loan — clearly distinguishes it from single-purpose siblings like nz_paye_calculator or nz_kiwisaver_calculator.

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 'Use for:' block gives four realistic query patterns ('what is $32 an hour as a salary', 'is $75,000 better than $36 an hour'), giving an agent strong matching signals for when to invoke this tool. However, it never names an alternative or states when NOT to use it — notably it doesn't differentiate from confusable siblings like nz_net_to_gross_calculator or nz_contractor_vs_employee_calculator.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources