brainy/dist/types/mcpTypes.js
David Snelling f8c45f2d8d Initial commit: Brainy - Multi-Dimensional AI Database
Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
2025-08-18 17:35:06 -07:00

22 lines
No EOL
710 B
JavaScript

/**
* Model Control Protocol (MCP) Types
*
* This file defines the types and interfaces for the Model Control Protocol (MCP)
* implementation in Brainy. MCP allows external models to access Brainy data and
* use the augmentation pipeline as tools.
*/
/**
* MCP version information
*/
export const MCP_VERSION = '1.0.0';
/**
* MCP request types
*/
export var MCPRequestType;
(function (MCPRequestType) {
MCPRequestType["DATA_ACCESS"] = "data_access";
MCPRequestType["TOOL_EXECUTION"] = "tool_execution";
MCPRequestType["SYSTEM_INFO"] = "system_info";
MCPRequestType["AUTHENTICATION"] = "authentication";
})(MCPRequestType || (MCPRequestType = {}));
//# sourceMappingURL=mcpTypes.js.map