er_record_create
Generate a new Edge Routine (ER) record by specifying the routine name, site ID, and record name, enabling effective management of AI model integrations via the ESA MCP Server.
Instructions
Create a new record associated with an Edge Routine (ER)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the routine | |
| recordName | Yes | The name of the record | |
| siteId | Yes | The ID of the site |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the routine",
"type": "string"
},
"recordName": {
"description": "The name of the record",
"type": "string"
},
"siteId": {
"description": "The ID of the site",
"type": "number"
}
},
"required": [
"name",
"siteId",
"recordName"
],
"type": "object"
}