create_article
Generate SEO-friendly articles by specifying topic, target keyword, word count, language, and tone. Automate article creation with AI for optimized content writing.
Instructions
Create a new article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
articleType | No | Type of article (default: Article) | Article |
language | No | Language for the article (default: English) | English |
targetArticleTopic | Yes | The topic/title for the article | |
targetKeyword | No | Target SEO keyword for the article (optional) | |
toneOfVoice | No | Tone of voice (default: Professional) | Professional |
wordCount | No | Target word count (default: 1000) |
Input Schema (JSON Schema)
{
"properties": {
"articleType": {
"default": "Article",
"description": "Type of article (default: Article)",
"type": "string"
},
"language": {
"default": "English",
"description": "Language for the article (default: English)",
"type": "string"
},
"targetArticleTopic": {
"description": "The topic/title for the article",
"type": "string"
},
"targetKeyword": {
"description": "Target SEO keyword for the article (optional)",
"type": "string"
},
"toneOfVoice": {
"default": "Professional",
"description": "Tone of voice (default: Professional)",
"type": "string"
},
"wordCount": {
"default": 1000,
"description": "Target word count (default: 1000)",
"type": "integer"
}
},
"required": [
"targetArticleTopic"
],
"type": "object"
}