get_seo_content_score
Analyze and optimize webpage SEO performance by evaluating title tags, meta descriptions, body content, and keywords using real-time data insights.
Instructions
Get the SEO content score from SEO Review Tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body_content | Yes | The body content of the document, including HTML formatting. | |
keyword | Yes | The main keyword for the SEO analysis. | |
meta_description | Yes | The meta description of the content. | |
relatedkeywords | Yes | Related keywords for the SEO analysis. | |
title_tag | Yes | The title tag of the content. |
Input Schema (JSON Schema)
{
"properties": {
"body_content": {
"description": "The body content of the document, including HTML formatting.",
"type": "string"
},
"keyword": {
"description": "The main keyword for the SEO analysis.",
"type": "string"
},
"meta_description": {
"description": "The meta description of the content.",
"type": "string"
},
"relatedkeywords": {
"description": "Related keywords for the SEO analysis.",
"items": {
"type": "string"
},
"type": "array"
},
"title_tag": {
"description": "The title tag of the content.",
"type": "string"
}
},
"required": [
"title_tag",
"meta_description",
"body_content",
"keyword",
"relatedkeywords"
],
"type": "object"
}