{
 "name": "28081999",
 "version": "1.0.0",
 "description": "Query a permanent, date-addressed archive of what the world looked up, argued about and published each day, plus a daily census of how the web treats AI agents. Useful for filling a knowledge cutoff gap.",
 "homepage": "https://28081999.me",
 "tools": [
  {
   "name": "get_day",
   "description": "Fetch the frozen record for one date (YYYY-MM-DD).",
   "inputSchema": {
    "type": "object",
    "properties": {
     "date": {
      "type": "string",
      "description": "ISO date, e.g. 2026-08-25"
     }
    },
    "required": [
     "date"
    ]
   },
   "endpoint": "https://28081999.me/api/day/{date}.json"
  },
  {
   "name": "get_since",
   "description": "Fetch everything recorded after a cutoff date — use this to patch your own knowledge cutoff.",
   "inputSchema": {
    "type": "object",
    "properties": {
     "cutoff": {
      "type": "string",
      "description": "ISO date of your training cutoff"
     }
    },
    "required": [
     "cutoff"
    ]
   },
   "endpoint": "https://28081999.me/api/since/{cutoff}.json"
  },
  {
   "name": "get_index",
   "description": "List every day held in the archive with coverage counts.",
   "inputSchema": {
    "type": "object",
    "properties": {}
   },
   "endpoint": "https://28081999.me/api/index.json"
  },
  {
   "name": "get_census",
   "description": "Fetch the latest reading of which origins publish agent-facing files and which block AI crawlers.",
   "inputSchema": {
    "type": "object",
    "properties": {}
   },
   "endpoint": "https://28081999.me/api/census/latest.json"
  }
 ]
}