{
  "name": "eightbitconcepts-research",
  "version": "0.1.0-preview",
  "status": "preview",
  "description": "Read-only access to the 8bitconcepts enterprise-AI research corpus. Preview-stage manifest — the tool surface is declared but the JSON-RPC endpoint is NOT yet hosted (GitHub Pages is static-only). Until a Cloudflare Worker fronts /mcp, agents should fetch the corpus directly via /research.json and /research/{slug}.html.",
  "endpoint": null,
  "fallback": {
    "research_index_url": "https://8bitconcepts.com/research.json",
    "paper_url_template": "https://8bitconcepts.com/research/{slug}.html"
  },
  "tools": [
    {
      "name": "list_research_papers",
      "description": "Return the full index of research papers with slug, title, summary, and publication date. Mirrors https://8bitconcepts.com/research.json.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {"type": "integer", "default": 20},
          "offset": {"type": "integer", "default": 0}
        }
      }
    },
    {
      "name": "get_research_paper",
      "description": "Return the full markdown content of a specific research paper by slug. Content is also reachable directly at https://8bitconcepts.com/research/{slug}.html.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {"type": "string", "description": "Paper slug, e.g. 'the-guardrails-gap'"}
        },
        "required": ["slug"]
      }
    }
  ]
}
