/docs/mcp

model_context_protocol · tool

aeo_entity_audit

Audit whether a brand/domain has a Wikidata entity and return the recommended schema.org sameAs URL.

Input schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Brand website URL or domain"
    },
    "brand_name": {
      "type": "string",
      "description": "Brand label to search when domain matching misses"
    },
    "lang": {
      "type": "string",
      "enum": [
        "zh-TW",
        "zh-CN",
        "zh",
        "en",
        "ja",
        "ko"
      ],
      "description": "Label search language, default en"
    }
  },
  "required": [
    "url"
  ]
}

JSON-RPC example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "aeo_entity_audit",
    "arguments": {
      "url": "https://example.com",
      "brand_name": "https://example.com",
      "lang": "https://example.com"
    }
  }
}

Related docs