get_seo_analysis
Analyze website SEO performance and gain actionable recommendations by auditing URL, emulating device type, and optionally including detailed metrics.
Instructions
Get SEO analysis and recommendations for a website
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | No | Device to emulate (default: desktop) | desktop |
includeDetails | No | Include detailed metrics and recommendations | |
url | Yes | URL to audit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"device": {
"default": "desktop",
"description": "Device to emulate (default: desktop)",
"enum": [
"desktop",
"mobile"
],
"type": "string"
},
"includeDetails": {
"default": false,
"description": "Include detailed metrics and recommendations",
"type": "boolean"
},
"url": {
"description": "URL to audit",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}