create_record
Generate a new record in a specified resource by providing the resource URI and required data. Streamline data management within MCP servers using structured inputs.
Instructions
Create a new record in a resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Record data to create | |
resourceUri | Yes | URI of the resource |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"additionalProperties": {},
"description": "Record data to create",
"type": "object"
},
"resourceUri": {
"description": "URI of the resource",
"type": "string"
}
},
"required": [
"resourceUri",
"data"
],
"type": "object"
}