Travel Budget Calculator

Finance REST API MCP

Estimate a trip budget from per-day and one-off expenses: total per person, total for all travelers, daily spend, and a per-category breakdown with percentages. When expenses is omitted, a default set (flights 500, accommodation 100/day, transport 30/day, food 60/day, activities 40/day, shopping 100, misc 50) is used.

This page documents the MCP tool findutils:travel_budget_calculator. See the REST reference →

Call it over MCP

Tool name findutils:travel_budget_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": "travel_budget_calculator",
      "arguments": {
        "trip_days": 7,
        "travelers": 2
      }
    }
  }'

Input schema

Argument Type Required Description
trip_days integer yes Trip length in days (1-3650).
travelers integer no Number of travelers (1-1000). Default 1. Default: 1.
currency string no Currency code echoed back in the result (e.g. USD). Default USD. Default: "USD".
expenses array no Expense categories per person. Each item: { name: string, amount: number, per_day?: boolean }. per_day=true multiplies the amount by trip_days.

Example arguments (verified)

{
  "trip_days": 7,
  "travelers": 2
}

Also a REST endpoint

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

Open the REST reference for Travel Budget Calculator →

More Finance tools