{
  "$schema": "https://modelcontextprotocol.io/schema/server-card.json",
  "name": "slop-scan",
  "description": "Supply chain security tool verifying npm package existence and download velocity to prevent AI slopsquatting attacks.",
  "homepage": "https://erayaha.github.io/slop-scan/",
  "repository": "https://github.com/erayaha/slop-scan",
  "publisher": {
    "name": "Erayaha",
    "url": "https://github.com/erayaha"
  },
  "tools": [
    {
      "name": "verify_packages",
      "description": "Verifies whether a list of npm package names exist on the official npm registry and returns weekly download counts.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "packages": {
            "type": "array",
            "items": { "type": "string" },
            "description": "Array of package names to check"
          },
          "threshold": {
            "type": "number",
            "description": "Minimum weekly download count to consider a package safe"
          }
        },
        "required": ["packages"]
      }
    }
  ]
}
