neuron_create_blog_post
ActiveTool of io.github.conquext/neuron
Create a new blog post in draft or published status with specified title, content, and optional metadata such as tags, excerpt, and SEO fields. Content supports full markdown (GFM) AND raw HTML — images/GIFs via , videos via <video>, YouTube/Loom embeds via <iframe>, collapsible sections via <details>/<summary>, plus <mark>, <kbd>, <abbr>, <div> with inline styles, etc.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"title",
"content",
"authorType"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of tag names or slugs to categorize the post"
},
"title": {
"type": "string",
"description": "Title of the blog post (max 500 characters)"
},
"status": {
"enum": [
"draft",
"published"
],
"type": "string",
"default": "draft",
"description": "Initial publication status of the post (default: 'draft')"
},
"content": {
"type": "string",
"description": "Full body content of the blog post in markdown format. Supports raw HTML inline via rehype-raw. Rich content options: images/GIFs via , videos via <video src=\"url\" controls></video>, embedded YouTube/Loom via <iframe src=\"embed-url\"></iframe> (rendered in 16:9 aspect ratio), collapsible sections via <details><summary>Title</summary>content</details>, plus <mark>, <kbd>, <abbr> and other HTML elements."
},
"excerpt": {
"type": "string",
"description": "Short summary or preview text for the blog post"
},
"seoTitle": {
"type": "string",
"description": "Custom SEO title override for search engine results"
},
"authorType": {
"enum": [
"user",
"organization"
],
"type": "string",
"description": "Whether the post is authored by an individual user or the organization"
},
"seoKeywords": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of SEO keywords for search engine optimization"
},
"coverImageUrl": {
"type": "string",
"description": "URL of the cover image displayed at the top of the post"
},
"seoDescription": {
"type": "string",
"description": "Meta description for search engine result snippets"
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
2/7 registries