/docs/mcp

model_context_protocol · tool

aeo_generate

Generate AI-powered content for a URL: FAQ schema, blog post intro, or product descriptions. Useful for improving AEO signals.

Input schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Target website URL for context"
    },
    "content_type": {
      "type": "string",
      "enum": [
        "faq",
        "blog",
        "product",
        "landing"
      ],
      "description": "Type of content to generate"
    },
    "topic": {
      "type": "string",
      "description": "Topic or keyword to focus on"
    }
  },
  "required": [
    "url",
    "content_type"
  ]
}

JSON-RPC example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "aeo_generate",
    "arguments": {
      "url": "https://example.com",
      "content_type": "faq",
      "topic": "https://example.com"
    }
  }
}

Related docs