getMetadata
Extract specific metadata or full metadata details from an entity by providing its identifier and optional key. Designed for integration with 3D-MCP, enabling structured access to entity data in digital content workflows.
Instructions
Get metadata from an entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Entity identifier | |
key | No | Specific metadata key to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Entity identifier",
"type": "string"
},
"key": {
"description": "Specific metadata key to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}