Kuzu MCP server
Officialkuzu-mcp-сервер
Сервер Model Context Protocol, который обеспечивает доступ к базам данных Kuzu. Этот сервер позволяет LLM проверять схемы баз данных и выполнять запросы к предоставленной базе данных kuzu.
Компоненты
Инструменты
получитьСхему
Извлечь полную схему базы данных Kuzu, включая все узлы и таблицы связей, а также их свойства.
Ввод: нет
запрос
Выполнить запрос Cypher в базе данных Kuzu
Ввод:
cypher(строка): Запрос Cypher для запуска
Быстрый
сгенерироватьKuzuCypher
Сгенерировать запрос Cypher для Kuzu
Аргумент:
question(строка): Вопрос на естественном языке для создания запроса Cypher
Related MCP server: MCP-Python
Использование с Claude Desktop
С Docker (рекомендуется)
Отредактируйте файл конфигурации
config.json:на macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonв Windows:
%APPDATA%\Claude\claude_desktop_config.json
Добавьте следующую конфигурацию к объекту
mcpServers:{ "mcpServers": { "kuzu": { "command": "docker", "args": [ "run", "-v", "{Absolute Path to the Kuzu database}:/database", "--rm", "-i", "kuzudb/mcp-server" ] } } }Измените
{Absolute Path to the Kuzu database}на фактический путь.Перезагрузить рабочий стол Клода
С Node.js и npm (для разработки)
Установка зависимостей:
npm installОтредактируйте файл конфигурации
config.json:на macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonв Windows:
%APPDATA%\Claude\claude_desktop_config.json
Добавьте следующую конфигурацию к объекту
mcpServers:{ "mcpServers": { "kuzu": { "command": "node", "args": [ "{Absolute Path to this repository}/index.js", "{Absolute Path to the Kuzu database}", ] } } }Измените
{Absolute Path to this repository}и{Absolute Path to the Kuzu database}на фактические пути.Перезагрузить рабочий стол Клода
Режим «Только чтение»
Сервер может быть запущен в режиме только для чтения, если установить переменную окружения KUZU_READ_ONLY в true . В этом режиме выполнение любого запроса, который пытается изменить базу данных, приведет к ошибке. Этот флаг можно установить в файле конфигурации следующим образом:
{
"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