Skip to main content
Register a concept, person, tool, component, or service as a node in the knowledge graph. Entities are the building blocks — they represent “things” that can have relationships via edges.

Parameters

name
string
required
Entity name. Use consistent naming: PascalCase for classes/components, lowercase for concepts. Examples: "AuthService", "PostgreSQL", "user-authentication".
summary
string
Brief description of what this entity is. Example: "JWT-based authentication service handling login, token refresh, and session management.".
entityType
string
Entity classification. Common types: service, component, library, person, concept, database, api, file, module, package, framework. Use consistently across entities.
scope
string
default:"project"
Storage scope.
ValueDescription
projectStored under the current project (default)
globalShared across all projects

Example

{
  "name": "React",
  "summary": "JavaScript UI library maintained by Meta",
  "entityType": "technology",
  "scope": "project"
}