graph-node-upsert
Create or update graph nodes with labels, types, and properties using MCP Index Notes. Returns node ID for efficient knowledge graph management and relationship mapping.
Instructions
Create or update a graph node with label/type/props. Returns node id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | ||
label | Yes | ||
props | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "number"
},
"label": {
"type": "string"
},
"props": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"label"
],
"type": "object"
}