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
Query a graph database using OpenCypher. Parameters: query (string), readOnly (optional boolean), params (optional object)
Execute a read-only query on a graph database. Parameters: query (string), params (optional object)
Create a new node in the graph. Parameters: nodeType (string), properties (object)
Create a relationship between two nodes. Parameters: sourceId (string), targetId (string), relationshipType (string), properties (optional object)
List all available graphs in the database.
Retrieve the schema of a graph, including node labels and relationship types. Parameters: includeConnections (optional boolean)
Get the schema for a specific node type, including its properties. Parameters: nodeType (string), sampleSize (optional integer)
Get the schema for a specific relationship type, including its properties. Parameters: relationshipType (string), sampleSize (optional integer)
Delete a specified graph from the database. Parameters: graphName (string)