add_metadata
Enhance knowledge graph nodes by adding metadata arrays, enabling enriched data organization and retrieval on the MemoryMesh MCP server.
Instructions
Add new metadata to existing nodes in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metadata | Yes | Array of metadata to add |
Input Schema (JSON Schema)
{
"properties": {
"metadata": {
"description": "Array of metadata to add",
"items": {
"description": "Metadata to add",
"properties": {
"contents": {
"description": "An array of metadata contents to add",
"items": {
"description": "Metadata content item",
"type": "string"
},
"type": "array"
},
"nodeName": {
"description": "The name of the node to add the metadata to",
"type": "string"
}
},
"required": [
"nodeName",
"contents"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"metadata"
],
"type": "object"
}