Skip to main content
Glama
Neo4jConfig.ts907 B
/** * Configuration options for Neo4j */ export interface Neo4jConfig { /** * The Neo4j server URI (e.g., 'bolt://localhost:7687') */ uri: string; /** * Username for authentication */ username: string; /** * Password for authentication */ password: string; /** * Neo4j database name */ database: string; /** * Name of the vector index */ vectorIndexName: string; /** * Dimensions for vector embeddings */ vectorDimensions: number; /** * Similarity function to use for vector search */ similarityFunction: 'cosine' | 'euclidean'; } /** * Default Neo4j configuration */ export const DEFAULT_NEO4J_CONFIG: Neo4jConfig = { uri: 'bolt://localhost:7687', username: 'neo4j', password: 'memento_password', database: 'neo4j', vectorIndexName: 'entity_embeddings', vectorDimensions: 1536, similarityFunction: 'cosine', };

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/gannonh/memento-mcp'

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