Utilities
Calculate the week number of a date within a year. Supports different week number calculation standards (ISO 8601, US standard, etc.) for project management, time planning, and data analysis.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/week-number-calculator' \
-H 'Content-Type: application/json' \
-d '{"dateInput":"Enter date(s) - one per line for multiple dates (e.g., \"2024-01-01\", \"Jan 15, 2024\", \"today\")","weekStandard":"iso","multipleDates":false,"outputFormat":"list","includeDateInfo":true,"startOfWeek":"auto","firstWeekContains":"auto"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/week-number-calculator| Name | Type | Required | Description |
|---|---|---|---|
| dateInput | textarea | Yes | — |
| weekStandard | select | Yes | — |
| multipleDates | checkbox | No | Process multiple dates (one per line) |
| outputFormat | select | Yes | — |
| includeDateInfo | checkbox | No | Include additional date details like quarter, day of year, leap year info |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-week-number-calculator": {
"name": "week-number-calculator",
"description": "Calculate the week number of a date within a year. Supports different week number calculation standards (ISO 8601, US standard, etc.) for project management, time planning, and data analysis.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=week-number-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "week-number-calculator",
"arguments": {
"dateInput": "Enter date(s) - one per line for multiple dates (e.g., \"2024-01-01\", \"Jan 15, 2024\", \"today\")",
"weekStandard": "iso",
"multipleDates": false,
"outputFormat": "list",
"includeDateInfo": true,
"startOfWeek": "auto",
"firstWeekContains": "auto"
}
}
}| startOfWeek | select | No | — |
| firstWeekContains | select | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]