update_record
Modify existing records within a specified resource by providing the resource URI, record ID, and updated data. Ensures accurate and efficient record management within the MCP Template server.
Instructions
Update a record in a resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | New record data | |
recordId | Yes | ID of the record to update | |
resourceUri | Yes | URI of the resource |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"additionalProperties": {},
"description": "New record data",
"type": "object"
},
"recordId": {
"description": "ID of the record to update",
"type": "string"
},
"resourceUri": {
"description": "URI of the resource",
"type": "string"
}
},
"required": [
"resourceUri",
"recordId",
"data"
],
"type": "object"
}