createGroup
Create a new group or list in the Clay MCP server, ensuring no duplicates unless specified. Manage contacts, notes, and reminders efficiently with organized groupings.
Instructions
Create a group or list for the user. If a group with the same name already exists, it will not create a duplicate unless explicitly requested to ignore the check.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | The name of the group to create. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "The name of the group to create.",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}