{
  "$schema": "https://webmcp.org/schemas/v1/mcp-actions.json",
  "name": "TAVARDT Digital Agency WebMCP Manifest",
  "description": "Declared machine-readable actions for autonomous AI browsing agents.",
  "url": "https://ag.tavardt.com",
  "version": "1.0.0",
  "actions": [
    {
      "id": "request-agency-audit",
      "name": "Request Strategic Agency Audit",
      "description": "Submit a business inquiry or request for a strategic digital audit (Branding, Cybersecurity, Web Design, Paid Media) to TAVARDT.",
      "targetUrl": "https://ag.tavardt.com/contact/",
      "method": "POST",
      "parameters": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the contact person"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Corporate or direct email address"
          },
          "company": {
            "type": "string",
            "description": "Company name or website URL"
          },
          "message": {
            "type": "string",
            "description": "Project brief, scope, goals, or security incident details"
          }
        },
        "required": [
          "name",
          "email",
          "message"
        ]
      }
    }
  ]
}