You're viewing a demo portfolio

Join the waitlist
PRSM

create_graph_node

Active

Tool of RationalBloks

declared in 0.10.2

Create a single node in a deployed graph project. REQUIRES: Project must be deployed (use deploy_graph_staging first). The entity_type must match an entity key from the project schema. Use get_graph_data_schema to see available entity types and their fields. Example: entity_type: "person" entity_id: "alan-turing-001" data: {"name": "Alan Turing", "birth_year": 1912, "field": "Computer Science"} The entity_id is your unique identifier — use meaningful IDs for knowledge graphs.

Parameters schema

{
  "type": "object",
  "required": [
    "project_id",
    "entity_type",
    "entity_id",
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "description": "Node properties matching the entity schema"
    },
    "entity_id": {
      "type": "string",
      "description": "Unique identifier for the node"
    },
    "project_id": {
      "type": "string",
      "description": "Project ID (UUID)"
    },
    "entity_type": {
      "type": "string",
      "description": "Entity key (e.g., 'person', 'concept')"
    },
    "environment": {
      "type": "string",
      "description": "Environment: staging or production (default: staging)"
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

RationalBloks

https://github.com/rationalbloks/rationalbloks-mcp

1/7 registries
View full server →
create_graph_node — RationalBloks — PRSM MCP