create_blog_post
Generate and publish blog posts by specifying a website ID, title, and HTML content. Integrates with DevHub CMS MCP for efficient content management.
Instructions
Create a new blog post
Args:
site_id: Website ID where the post will be published. Prompt the user for this ID.
title: Blog post title
content: HTML content of blog post. Should not include a <h1> tag, only h2+
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
site_id | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"site_id": {
"title": "Site Id",
"type": "integer"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"site_id",
"title",
"content"
],
"title": "create_blog_postArguments",
"type": "object"
}