{
  "name": "FeedShield",
  "description": "AI-powered Google Merchant Center compliance platform. Runs 250+ automated checks across 27 categories and returns AI-written fix recommendations.",
  "version": "1.0.0",
  "website": "https://feedshield.ai",
  "contact": "hello@feedshield.ai",
  "documentation": "https://feedshield.ai/llms.txt",
  "tools": [
    {
      "name": "run-free-audit",
      "description": "Run a free Google Merchant Center compliance audit on a store URL. Returns a compliance score and list of policy issues.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "storeUrl": {
            "type": "string",
            "format": "uri",
            "description": "Root URL of the merchant's online store."
          }
        },
        "required": [
          "storeUrl"
        ]
      },
      "invocation": {
        "type": "form",
        "url": "https://feedshield.ai/free-audit",
        "method": "POST"
      }
    },
    {
      "name": "get-pricing",
      "description": "Returns current FeedShield pricing tiers and feature comparison.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "invocation": {
        "type": "http",
        "url": "https://feedshield.ai/pricing",
        "method": "GET"
      }
    },
    {
      "name": "search-knowledge-hub",
      "description": "Search the FeedShield knowledge base for GMC compliance topics.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query."
          }
        },
        "required": [
          "query"
        ]
      },
      "invocation": {
        "type": "http",
        "url": "https://feedshield.ai/knowledge-hub?q={query}",
        "method": "GET"
      }
    },
    {
      "name": "contact-sales",
      "description": "Submit a sales or partnership inquiry. Routes to hello@feedshield.ai and returns within one business day.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "message": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "email",
          "message"
        ]
      },
      "invocation": {
        "type": "form",
        "url": "https://feedshield.ai/api/contact",
        "method": "POST"
      }
    }
  ]
}