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 MCP tool findutils:salary_calculator. See the REST reference →

Call it over MCP

Tool name findutils:salary_calculator · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "salary_calculator",
      "arguments": {
        "amount": 50000,
        "pay_period": "annual",
        "hours_per_week": 40
      }
    }
  }'

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 a REST endpoint

The same tool answers plain HTTP at POST /api/tools/salary-calculator/execute — no key, 60 requests/min.

Open the REST reference for Salary Calculator →

More Finance tools