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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Query graph databases using OpenCypher. Supports a 'readOnly' parameter for executing read-only queries.
Execute queries in read-only mode using GRAPH.RO_QUERY. Ideal for running queries on replica instances or preventing accidental write operations.
Create a new node in the graph, such as a person or an entity.
Add a relationship between two nodes in the graph, such as 'WORKS_AT' between a person and a company.
List all available graphs in the database.
Show the structure of a specific graph, providing details about its nodes and relationships.
Delete a specified graph from the database.