FalkorDB MCP Server provides a bridge between AI models and FalkorDB graph databases, enabling natural language querying of graph data. Built with TypeScript and Express, it implements the Model Context Protocol to translate requests into FalkorDB queries and format responses according to MCP standards. The server features authentication via API keys, connection management for multiple FalkorDB instances, and endpoints for executing queries, retrieving metadata, and listing available graphs. It's particularly valuable for AI applications that need to analyze relationships in graph data, such as knowledge graphs, recommendation systems, or network analysis.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
Query graph databases using OpenCypher. Parameters: query (string), readOnly (optional boolean)
Execute queries in read-only mode. Parameters: query (string)
Create a new node in the graph. Parameters: nodeData (object)
Create a relationship between two nodes. Parameters: sourceNodeId (string), targetNodeId (string), relationshipType (string)
List all available graphs.
Show the structure of a specified graph. Parameters: graphName (string)
Delete a specified graph. Parameters: graphName (string)