{"name":"numbers-intel","version":"1.0.0","tools":[{"name":"get_date_fact","description":"Returns a random notable historical event that happened on a given month and day (any year). Backed by Wikipedia's 'On This Day' data. Use this when the user asks 'what happened on June 30th' or wants a fun historical fact tied to a specific calendar date.","inputSchema":{"type":"object","properties":{"month":{"type":"integer","minimum":1,"maximum":12,"description":"Month number, 1-12 (e.g. 6 for June)"},"day":{"type":"integer","minimum":1,"maximum":31,"description":"Day of the month, 1-31"}},"required":["month","day"]}},{"name":"get_year_fact","description":"Returns a historical event that occurred in a specific year, optionally narrowed to a given month/day. If month/day are omitted, a random calendar date is checked for that year. Use this when the user asks 'what happened in 1986' or wants a fact about a specific year, with an optional date.","inputSchema":{"type":"object","properties":{"year":{"type":"integer","description":"The year to find a historical event for, e.g. 1986"},"month":{"type":"integer","minimum":1,"maximum":12,"description":"Optional month number, 1-12, to narrow the search"},"day":{"type":"integer","minimum":1,"maximum":31,"description":"Optional day of the month, 1-31, to narrow the search"}},"required":["year"]}},{"name":"get_birth_fact","description":"Returns a random notable person who was born on a given month and day (any year). Use this when the user wants to know who shares a birthday with a given calendar date, e.g. 'who was born on October 31st'.","inputSchema":{"type":"object","properties":{"month":{"type":"integer","minimum":1,"maximum":12,"description":"Month number, 1-12"},"day":{"type":"integer","minimum":1,"maximum":31,"description":"Day of the month, 1-31"}},"required":["month","day"]}},{"name":"get_death_fact","description":"Returns a random notable person who died on a given month and day (any year). Use this when the user wants a historical 'on this day' death/memorial fact for a given calendar date.","inputSchema":{"type":"object","properties":{"month":{"type":"integer","minimum":1,"maximum":12,"description":"Month number, 1-12"},"day":{"type":"integer","minimum":1,"maximum":31,"description":"Day of the month, 1-31"}},"required":["month","day"]}}]}