date_info

Pack: datecalc · Endpoint: https://gateway.pipeworx.io/datecalc/mcp

Calendar facts about a date (UTC): weekday, day-of-year, ISO week number, quarter, whether the year is a leap year, and days in that month.

Parameters

NameTypeRequiredDescription
datestringyesA date (ISO-8601).

Example call

Arguments

{
  "date": "2025-12-25"
}

curl

curl -X POST https://gateway.pipeworx.io/datecalc/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"date_info","arguments":{"date":"2025-12-25"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('date_info', {
  "date": "2025-12-25"
});

More examples

{
  "date": "2024-02-29T14:30:00Z"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "datecalc": {
      "url": "https://gateway.pipeworx.io/datecalc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026