get-record
Retrieve a specific record from PowerPlatform/Dataverse by providing the entity name (plural) and record ID. Simplify data access and management in PowerPlatform MCP.
Instructions
Get a specific record by entity name (plural) and ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityNamePlural | Yes | The plural name of the entity (e.g., 'accounts', 'contacts') | |
recordId | Yes | The GUID of the record |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entityNamePlural": {
"description": "The plural name of the entity (e.g., 'accounts', 'contacts')",
"type": "string"
},
"recordId": {
"description": "The GUID of the record",
"type": "string"
}
},
"required": [
"entityNamePlural",
"recordId"
],
"type": "object"
}