Salary Calculator

Finance REST API MCP

Return the same pay expressed as hourly, daily, weekly, bi-weekly, semi-monthly, monthly, and yearly amounts. Assumes 52 weeks and 260 working days a year; the hourly figure uses hours_per_week.

This page documents the HTTP endpoint POST /api/tools/salary-calculator/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/salary-calculator/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/salary-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 50000,
    "pay_period": "annual",
    "hours_per_week": 40
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/salary-calculator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
amount number yes Pay amount for the given pay_period. Must be > 0.
pay_period string (hourly | daily | weekly | biweekly | semimonthly | monthly | annual) no Period the amount is paid for. Default: annual.
hours_per_week number no Working hours per week. Must be > 0. Default: 40.

Example arguments (verified)

{
  "amount": 50000,
  "pay_period": "annual",
  "hours_per_week": 40
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:salary_calculator after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Salary Calculator →

More Finance tools