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.
No reviews yet. Be the first to review!
Sign in to join the conversation
Query the graph database with a specified query string. Parameters: query (string), readOnly (optional boolean)
Execute a read-only query on the graph database. Parameters: query (string)
Create a new node in the graph database. Parameters: nodeData (object)
Create a new relationship between two nodes in the graph database. Parameters: sourceNodeId (string), targetNodeId (string), relationshipType (string)
List all available graphs in the database.
Show the structure of a specified graph. Parameters: graphName (string)
Delete a specified graph from the database. Parameters: graphName (string)