create_content_item
Creates a new content item (article) with markdown content.
Available from 1 provider (1 remote)
Input Schema
{
"type": "object",
"properties": {
"brandId": {
"description": "Brand ID (ObjectId)",
"type": "string"
},
"title": {
"description": "Article title (used as H1)",
"type": "string"
},
"content": {
"description": "Full article content in markdown",
"type": "string"
},
"description": {
"description": "Short description / excerpt",
"type": "string"
},
"slug": {
"description": "URL slug (auto-generated from title if omitted)",
"type": [
"string",
"null"
],
"default": null
},
"language": {
"description": "Language code (default 'en')",
"type": "string",
"default": "en"
},
"status": {
"description": "Status: Draft, ReadyForReview, Published, Archived (default Draft)",
"type": "string",
"default": "Draft"
},
"categoryId": {
"description": "Category ID (ObjectId) — use list_categories to find available categories",
"type": [
"string",
"null"
],
"default": null
},
"primaryKeyword": {
"description": "Primary SEO keyword",
"type": [
"string",
"null"
],
"default": null
},
"tags": {
"description": "JSON array of tag strings",
"type": [
"string",
"null"
],
"default": null
},
"metaTitle": {
"description": "Meta title for SEO",
"type": [
"string",
"null"
],
"default": null
},
"metaDescription": {
"description": "Meta description for SEO",
"type": [
"string",
"null"
],
"default": null
},
"imageUrl": {
"description": "Featured image URL",
"type": [
"string",
"null"
],
"default": null
},
"brief": {
"description": "Content brief (markdown) — detailed instructions for content generation",
"type": [
"string",
"null"
],
"default": null
},
"internalTags": {
"description": "JSON array of internal tag strings (private, not shown on public blog)",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"brandId",
"title",
"content",
"description"
]
}
Remote Providers (1)
These servers are accessible over the network — no local installation needed.
BrandKarma
Remotehttps://app.getbrandkarma.com/api/mcp/