Claude

get_business_days

Count business days (Monday-Friday) between two dates. Counts weekdays only; does NOT skip public holidays. Handles reversed ranges by swapping internally while echoing input dates unswapped.

Remote caj201100/date-aware-claude

Remote (network-hosted)

Other tools also called get_business_days? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "date_to": {
      "type": "string",
      "description": "End date in YYYY-MM-DD format."
    },
    "date_from": {
      "type": "string",
      "description": "Start date in YYYY-MM-DD format."
    },
    "inclusive": {
      "type": "boolean",
      "description": "If true, both endpoints count. If false, the half-open range [date_from, date_to) is used. Default true (matches Excel NETWORKDAYS)."
    }
  }
}
          

Provider

Claude →