Career Experience Calculator

Datetime REST API MCP

Calculate total professional experience across several jobs: total days, years/months/days, weeks, working days (5/7), working hours (8 per working day), per-job durations, and career milestones (1 to 25 years). Jobs with an invalid or reversed date range are skipped and counted.

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

Call it over MCP

Tool name findutils:career_experience_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": "career_experience_calculator",
      "arguments": {
        "experiences": [
          {
            "company": "Acme",
            "start_date": "2020-01-01",
            "end_date": "2021-01-01"
          }
        ],
        "reference_date": "2026-04-18"
      }
    }
  }'

Input schema

Argument Type Required Description
experiences array yes List of jobs. Each item: { company?: string, start_date: "YYYY-MM-DD", end_date?: "YYYY-MM-DD", is_current?: boolean }. A current job ends at reference_date.
reference_date string no End date used for current jobs (ISO 8601). Default: now (UTC).

Example arguments (verified)

{
  "experiences": [
    {
      "company": "Acme",
      "start_date": "2020-01-01",
      "end_date": "2021-01-01"
    }
  ],
  "reference_date": "2026-04-18"
}

Also a REST endpoint

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

Open the REST reference for Career Experience Calculator →

More Datetime tools