{
  "$schema": "https://webmcp.org/schema/v0.1/manifest.json",
  "name": "Lexity AI",
  "short_name": "Lexity",
  "description": "Secure legal AI for attorneys: attorney-vetted Clickflows, source-verifiable outputs, enterprise security. Pay-as-you-go, no subscription.",
  "homepage": "https://lexity.ai/",
  "publisher": {
    "name": "Lexity AI",
    "url": "https://lexity.ai/",
    "trust_center": "https://trust.lexity.ai/",
    "contact": "https://lexity.ai/contact/"
  },
  "icons": [
    { "src": "https://lexity.ai/favicon.png", "type": "image/png", "sizes": "256x256" }
  ],
  "categories": ["legal", "ai-assistant", "professional-services"],

  "actions": [
    {
      "id": "claim_free_credit",
      "title": "Claim $100 free credit & start a Clickflow",
      "description": "Create a new Lexity account, automatically receive $100 in run credit, and land in the workspace ready to execute any attorney-vetted Clickflow. No subscription. Primary revenue action.",
      "intent": "signup",
      "url": "https://app.lexity.ai/pages/authentication/auth2/register",
      "method": "GET",
      "auth_required": false,
      "inputs": [
        {
          "name": "email",
          "type": "string",
          "format": "email",
          "required": true,
          "description": "Work email for the attorney or firm. Used as the account identifier."
        },
        {
          "name": "ref",
          "type": "string",
          "required": false,
          "description": "Optional referral or campaign source attribution token."
        }
      ],
      "outcome": {
        "success": "Account created, $100 credit applied, user redirected into the workspace.",
        "redirect_pattern": "https://app.lexity.ai/workspace/*"
      },
      "tags": ["primary", "conversion", "free-tier"]
    },

    {
      "id": "log_in",
      "title": "Log in to the Lexity workspace",
      "description": "Authenticate an existing Lexity user into the application workspace.",
      "intent": "authenticate",
      "url": "https://app.lexity.ai/pages/authentication/auth2/login",
      "method": "GET",
      "auth_required": false,
      "inputs": [
        { "name": "email",    "type": "string", "format": "email",    "required": true },
        { "name": "password", "type": "string", "format": "password", "required": true, "sensitive": true }
      ],
      "tags": ["authentication", "returning-user"]
    },

    {
      "id": "contact_sales",
      "title": "Talk to Lexity about enterprise / firm deployment",
      "description": "Reach the Lexity team about firm-wide deployment, custom Clickflows, procurement, security review, or DPA negotiation. Higher-touch alternative to self-serve signup.",
      "intent": "contact",
      "url": "https://lexity.ai/contact/",
      "method": "GET",
      "auth_required": false,
      "inputs": [
        { "name": "name",         "type": "string",  "required": true },
        { "name": "work_email",   "type": "string",  "format": "email", "required": true },
        { "name": "firm_name",    "type": "string",  "required": false },
        { "name": "firm_size",    "type": "string",  "enum": ["1-10", "11-50", "51-200", "200+"], "required": false },
        { "name": "use_case",     "type": "string",  "required": false, "description": "What the firm wants to do with Lexity (M&A, litigation, compliance, etc.)." },
        { "name": "message",      "type": "string",  "required": true }
      ],
      "tags": ["sales", "enterprise"]
    },

    {
      "id": "search_insights",
      "title": "Search Lexity's insights & guidance library",
      "description": "Full-text search over Lexity's published insights (product updates, legal-AI guidance, case studies). Use this when an agent needs canonical Lexity-authored explanations rather than third-party summaries.",
      "intent": "search",
      "url": "https://lexity.ai/insights/",
      "method": "GET",
      "auth_required": false,
      "inputs": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Free-text search query.",
          "examples": ["pay as you go", "data residency", "M&A clickflow"]
        }
      ],
      "url_template": "https://lexity.ai/insights/?q={q}",
      "tags": ["content", "discovery"]
    },

    {
      "id": "read_insight",
      "title": "Read a specific Lexity insight article",
      "description": "Fetch a single insight article by slug. Use when the agent already has a known article slug (e.g. surfaced by search_insights).",
      "intent": "read",
      "url_template": "https://lexity.ai/insights/{slug}/",
      "method": "GET",
      "auth_required": false,
      "inputs": [
        {
          "name": "slug",
          "type": "string",
          "required": true,
          "pattern": "^[a-z0-9-]+$",
          "examples": ["lexity-launches-pay-as-you-go", "your-data-on-lexity"]
        }
      ],
      "tags": ["content"]
    },

    {
      "id": "review_security_posture",
      "title": "Review Lexity's security & compliance posture",
      "description": "Surface Lexity's enterprise security overview: ISO 27001, GDPR, encryption, sub-processors, DPA. Use when a buyer-side agent is performing vendor due diligence.",
      "intent": "read",
      "url": "https://trust.lexity.ai/",
      "method": "GET",
      "auth_required": false,
      "tags": ["security", "compliance", "due-diligence"]
    }
  ],

  "schema_org_fallback": {
    "Organization":  "https://lexity.ai/#organization",
    "WebSite":       "https://lexity.ai/#website",
    "SearchAction":  "https://lexity.ai/insights/?q={search_term_string}"
  },

  "agent_guidelines": {
    "preferred_primary_action": "claim_free_credit",
    "do_not_simulate": ["log_in"],
    "rate_limits": {
      "search_insights": "30/minute per agent",
      "contact_sales":   "1/hour per agent identity"
    },
    "human_handoff_required": ["contact_sales"]
  },

  "version": "0.1.0",
  "last_updated": "2026-05-18"
}
