Skip to main content
Glama

Elasticsearch Knowledge Graph for MCP

by j3k0
types.ts647 B
/** * Represents an entity in the knowledge graph */ export interface Entity { name: string; entityType: string; observations: string[]; lastRead?: string; // Format: "YYYY-MM-DD" lastWrite?: string; // Format: "YYYY-MM-DD" - Combined creation and update date isImportant?: boolean; // Marker for important entities } /** * Represents a relation between entities in the knowledge graph */ export interface Relation { from: string; to: string; relationType: string; } /** * Represents a knowledge graph with entities and relations */ export interface KnowledgeGraph { entities: Entity[]; relations: Relation[]; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/j3k0/mcp-brain-tools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server