MCPcopy
hub / github.com/modelcontextprotocol/servers / Entity

Interface Entity

src/memory/index.ts:50–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48
49// We are storing our memory using entities, relations, and observations in a graph structure
50export interface Entity {
51 name: string;
52 entityType: string;
53 observations: string[];
54}
55
56export interface Relation {
57 from: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected