{
  "schema_version": "2025-06-18",
  "name": "zotta-lms",
  "title": "Zotta LMS Agent Interface",
  "description": "Discovery card for agents that need to understand Zotta LMS, ask public product questions, or help a human request a demo.",
  "publisher": {
    "name": "Zotta",
    "url": "https://zotta.ai"
  },
  "homepage": "https://zotta.ai/",
  "documentation_url": "https://zotta.ai/llms.txt",
  "transport": {
    "type": "streamable-http",
    "url": "https://staging.platform.zotta.ai/mcp"
  },
  "authorization": {
    "type": "oauth2",
    "resource": "https://zotta.ai",
    "authorization_servers": [
      "https://zotta.ai"
    ],
    "protected_resource_metadata": "https://zotta.ai/.well-known/oauth-protected-resource"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "tools": [
    {
      "name": "read_zotta_overview",
      "title": "Read Zotta overview",
      "description": "Fetch the agent-readable summary of Zotta LMS capabilities, public URLs, and usage guidance.",
      "input_schema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "ask_zotta_public_question",
      "title": "Ask a public product question",
      "description": "Ask the public landing-page assistant a non-sensitive question about Zotta LMS.",
      "input_schema": {
        "type": "object",
        "required": ["question"],
        "properties": {
          "question": {
            "type": "string",
            "description": "Public product question"
          }
        }
      }
    },
    {
      "name": "prepare_demo_request",
      "title": "Prepare demo request",
      "description": "Structure a concise demo request for a human to review before submission.",
      "input_schema": {
        "type": "object",
        "required": ["name", "email", "message"],
        "properties": {
          "name": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "company": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  ],
  "privacy": {
    "sensitive_data_policy": "Do not send borrower PII, regulated credit files, credentials, or confidential customer data to public marketing endpoints.",
    "content_signals": {
      "search": true,
      "ai_input": true,
      "ai_train": false
    }
  }
}
