get_record
Retrieve a specific record by ID from a resource using the resource URI and record ID for precise data access and management in MCP Template servers.
Instructions
Get a specific record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recordId | Yes | ID of the record to retrieve | |
resourceUri | Yes | URI of the resource |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"recordId": {
"description": "ID of the record to retrieve",
"type": "string"
},
"resourceUri": {
"description": "URI of the resource",
"type": "string"
}
},
"required": [
"resourceUri",
"recordId"
],
"type": "object"
}