You're viewing a demo portfolio

Join the waitlist
PRSM

neuron_create_blog_post

Active

Tool of io.github.conquext/neuron

declared in 1.0.0

Create a new blog post in draft or published status with specified title, content, and optional metadata such as tags, excerpt, and SEO fields.

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"
    },
    "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
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

io.github.conquext/neuron

https://github.com/conquext/neuron-mcp-server

1/7 registries
View full server →
neuron_create_blog_post — io.github.conquext/neuron — PRSM MCP