Unix Timestamp Convert

Datetime REST API MCP

Convert between Unix timestamps and ISO dates. Modes: "now", "to_date", "to_timestamp".

This page documents the HTTP endpoint POST /api/tools/unix-timestamp-convert/execute. See the MCP reference →

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/unix-timestamp-convert/execute \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "to_date",
    "value": "1700000000"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/unix-timestamp-convert

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
mode string (now | to_date | to_timestamp) yes Conversion mode.
value string no Input (timestamp integer for to_date, ISO/date string for to_timestamp).
timezone string no IANA timezone for to_date (e.g. "Europe/Istanbul"). Defaults to UTC. Default: "UTC".

Example arguments (verified)

{
  "mode": "to_date",
  "value": "1700000000"
}

Also an MCP tool

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

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Unix Timestamp Convert →

More Datetime tools