We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cameronsjo/mouse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Vector Database exports
*/
export {
connectLanceDB,
closeLanceDB,
saveEmbedding,
saveEmbeddingsBatch,
getEmbedding,
isEmbeddingStale,
vectorSearch,
getEmbeddingStats,
deleteEmbedding,
deleteEmbeddingsByDestination,
type EmbeddingRecord,
type VectorSearchResult,
} from "./lancedb.js";
export {
escapeSqlValue,
escapeSqlIdentifier,
buildWhereClause,
buildEqualityClause,
type WhereCondition,
type ComparisonOperator,
type LogicalOperator,
} from "./sql-escaping.js";