create_entry
Generate and add a new entry for a specific content type in Contentstack MCP, ensuring data aligns with predefined schema requirements.
Instructions
Creates a new entry for a specified content type.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content_type_uid | Yes | Content type UID | |
| entry | Yes | Entry data according to content type schema | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "content_type_uid": {
      "description": "Content type UID",
      "type": "string"
    },
    "entry": {
      "additionalProperties": true,
      "description": "Entry data according to content type schema",
      "properties": {},
      "type": "object"
    }
  },
  "required": [
    "content_type_uid",
    "entry"
  ],
  "type": "object"
}