Kuzu MCP server
Officialservidor kuzu-mcp
Un servidor de Protocolo de Contexto de Modelo que proporciona acceso a las bases de datos de Kuzu. Este servidor permite a los LLM inspeccionar los esquemas de las bases de datos y ejecutar consultas en la base de datos de Kuzu proporcionada.
Componentes
Herramientas
obtenerEsquema
Obtenga el esquema completo de la base de datos Kuzu, incluidos todos los nodos y las tablas de relaciones y sus propiedades.
Entrada: Ninguna
consulta
Ejecutar una consulta Cypher en la base de datos Kuzu
Entrada:
cypher(cadena): La consulta Cypher que se ejecutará
Inmediato
generarKuzuCypher
Generar una consulta Cypher para Kuzu
Argumento:
question(cadena): La pregunta en lenguaje natural para generar la consulta Cypher.
Related MCP server: MCP-Python
Uso con Claude Desktop
Con Docker (recomendado)
Edite el archivo de configuración
config.json:en macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonen Windows:
%APPDATA%\Claude\claude_desktop_config.json
Agregue la siguiente configuración al objeto
mcpServers:{ "mcpServers": { "kuzu": { "command": "docker", "args": [ "run", "-v", "{Absolute Path to the Kuzu database}:/database", "--rm", "-i", "kuzudb/mcp-server" ] } } }Cambie la
{Absolute Path to the Kuzu database}por la ruta realReiniciar Claude Desktop
Con Node.js y npm (para desarrollo)
Instalar dependencias:
npm installEdite el archivo de configuración
config.json:en macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonen Windows:
%APPDATA%\Claude\claude_desktop_config.json
Agregue la siguiente configuración al objeto
mcpServers:{ "mcpServers": { "kuzu": { "command": "node", "args": [ "{Absolute Path to this repository}/index.js", "{Absolute Path to the Kuzu database}", ] } } }Cambie
{Absolute Path to this repository}y{Absolute Path to the Kuzu database}por las rutas realesReiniciar Claude Desktop
Modo de solo lectura
El servidor puede ejecutarse en modo de solo lectura configurando la variable de entorno KUZU_READ_ONLY como true . En este modo, ejecutar cualquier consulta que intente modificar la base de datos generará un error. Esta opción se puede configurar en el archivo de configuración de la siguiente manera:
{
"mcpServers": {
"kuzu": {
"command": "docker",
"args": [
"run",
"-v",
"{Absolute Path to the Kuzu database}:/database",
"-e",
"KUZU_READ_ONLY=true",
"--rm",
"-i",
"kuzudb/mcp-server"
],
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceThis server enables interaction between Neo4j databases and Claude Desktop, allowing users to execute Cypher queries, create nodes, and establish relationships in the database.37959MIT
- FlicenseNot gradedqualityDmaintenanceA server that enables interaction with PostgreSQL, MySQL, MariaDB, or SQLite databases through Claude Desktop using natural language queries.1
- AlicenseCqualityAmaintenanceA server that enables LLMs (like Claude and VSCode Copilot) to interact with Azure Cosmos DB data through natural language queries, acting as a translator between AI assistants and your database.3263MIT
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that provides access to Kuzu databases. This server enables LLMs to inspect database schemas and execute queries on provided kuzu database.548MIT
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kuzudb/kuzu-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server