setMetadata
Assign or update metadata for a specific entity within the 3D-MCP server, enabling enhanced data management and integration with digital content tools.
Instructions
Set metadata on an entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Entity identifier | |
merge | No | Whether to merge with existing metadata | |
metadata | Yes | Metadata to set |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Entity identifier",
"type": "string"
},
"merge": {
"default": true,
"description": "Whether to merge with existing metadata",
"type": "boolean"
},
"metadata": {
"additionalProperties": {},
"description": "Metadata to set",
"type": "object"
}
},
"required": [
"id",
"metadata"
],
"type": "object"
}