{
  "$schema": "https://spec.modelcontextprotocol.io/v1/webmcp.json",
  "name": "ziv-isaiah-agent-interface",
  "version": "1.0.0",
  "baseUrl": "https://www.zivisaiah.com",
  "description": "Autonomous Agent WebMCP Interface for Ziv Isaiah's executive perspectives, publications, patent portfolio, and advisory inquiry routing.",
  "resources": [
    {
      "uri": "resource://zivisaiah.com/bio",
      "name": "Executive Biography",
      "mimeType": "application/json",
      "description": "Full biography, patents (3 granted, 1 pending), executive roles at Clarity, and background."
    },
    {
      "uri": "resource://zivisaiah.com/llms.txt",
      "name": "LLMs Plaintext Index",
      "mimeType": "text/markdown",
      "description": "Curated plaintext index for LLM ingestion and generative engine optimization."
    },
    {
      "uri": "resource://zivisaiah.com/projects",
      "name": "Projects & Ventures",
      "mimeType": "application/json",
      "description": "Catalog of active security initiatives (OneGate, Clarity) and frameworks (GAI Squad)."
    },
    {
      "uri": "resource://zivisaiah.com/articles",
      "name": "Articles Index",
      "mimeType": "application/json",
      "description": "Comprehensive index of all published essays, categories, and deep dives."
    },
    {
      "uri": "resource://zivisaiah.com/live-status",
      "name": "Live Status & Availability",
      "mimeType": "application/json",
      "description": "Real-time speaking and advisory availability, timezone, and site state."
    }
  ],
  "tools": [
    {
      "name": "search_essays",
      "description": "Semantically search essays across Cyber & Fraud Defense, Agentic AI, Leadership & Culture, Product Strategy, and Frontier AI.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search keyword, topic, or concept"
          },
          "category": {
            "type": "string",
            "enum": [
              "Leadership & Culture",
              "Agentic AI & Security",
              "Deepfake Defense",
              "Product & Engineering Strategy",
              "Frontier AI",
              "All"
            ],
            "description": "Filter by taxonomy pillar (default: All)"
          }
        },
        "required": ["query"]
      },
      "execution": {
        "type": "http",
        "method": "GET",
        "endpoint": "/api/mcp/essays/search"
      }
    },
    {
      "name": "submit_inquiry",
      "description": "Submit a structured advisory, speaking, or deepfake defense inquiry to Ziv Isaiah.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "sender_name": {
            "type": "string",
            "description": "Sender's full name"
          },
          "sender_email": {
            "type": "string",
            "format": "email",
            "description": "Sender's verified email address"
          },
          "topic": {
            "type": "string",
            "enum": ["Advisory", "Deepfake Defense", "Speaking", "General"],
            "description": "Inquiry focus area"
          },
          "message": {
            "type": "string",
            "description": "Detailed message or project brief"
          }
        },
        "required": ["sender_name", "sender_email", "topic", "message"]
      },
      "execution": {
        "type": "http",
        "method": "POST",
        "endpoint": "/api/mcp/contact"
      }
    },
    {
      "name": "read_bio",
      "description": "Read Ziv Isaiah's detailed executive biography, 3 granted US patents, 1 pending, and academic credentials.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "type": "http",
        "method": "GET",
        "endpoint": "/api/mcp/bio"
      }
    },
    {
      "name": "list_articles",
      "description": "Retrieve summary metadata and URLs for all published articles.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "type": "http",
        "method": "GET",
        "endpoint": "/api/mcp/articles"
      }
    }
  ]
}
