Tip Calculate

Calculators REST API MCP

Calculate tip amount, total, and per-person split.

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

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/tip-calculate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "bill": 100,
    "tip_percent": 15,
    "people": 2
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/tip-calculate

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
bill number yes Bill amount before tip.
tip_percent number no Tip percent. Defaults to 18. Default: 18.
people integer no Number of people to split across. Defaults to 1. Default: 1.

Example arguments (verified)

{
  "bill": 100,
  "tip_percent": 15,
  "people": 2
}

Also an MCP tool

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

Connect once

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

More Calculators tools