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.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Execute a query against the graph database. Parameters: query (string), readOnly (optional boolean)
Execute a query against the graph database in read-only mode, ensuring no write operations are performed. Parameters: query (string)
Create a new node in the graph database. Parameters: nodeData (object)
Establish a relationship between two nodes in the graph database. Parameters: fromNode (string), toNode (string), relationshipType (string)
Retrieve a list of all available graphs in the database.
Display the structure of a specified graph. Parameters: graphName (string)
Remove a specified graph from the database. Parameters: graphName (string)