Skip to main content
Glama

Kuzu MCP server

Official
by kuzudb

쿠즈-mcp-서버

Kuzu 데이터베이스에 대한 액세스를 제공하는 모델 컨텍스트 프로토콜 서버입니다. 이 서버를 통해 LLM은 데이터베이스 스키마를 검사하고 제공된 Kuzu 데이터베이스에서 쿼리를 실행할 수 있습니다.

구성 요소

도구

  • getSchema
    • 모든 노드와 관계 테이블 및 해당 속성을 포함하여 Kuzu 데이터베이스의 전체 스키마를 가져옵니다.
    • 입력: 없음
  • 질문
    • Kuzu 데이터베이스에서 Cypher 쿼리 실행
    • 입력: cypher (문자열): 실행할 Cypher 쿼리

즉각적인

  • KuzuCypher 생성
    • Kuzu에 대한 Cypher 쿼리 생성
    • 인수: question (문자열): Cypher 쿼리를 생성하기 위한 자연어 질문

Claude Desktop과 함께 사용

Docker 사용(권장)

  • 구성 파일 config.json 편집합니다.
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows의 경우: %APPDATA%\Claude\claude_desktop_config.json
  • mcpServers 개체에 다음 구성을 추가합니다.지엑스피1{Absolute Path to the Kuzu database} 를 실제 경로로 변경합니다.
  • Claude Desktop을 다시 시작하세요

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} 실제 경로로 변경합니다.
  • Claude Desktop을 다시 시작하세요

읽기 전용 모드

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" ], } } }
Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

local-only server

The server can only run on the client's local machine because it depends on local resources.

이 서버는 Claude Desktop이나 Cursor와 같은 클라이언트를 사용하여 사용자와 Kuzu 데이터베이스 간의 자연어 상호작용을 가능하게 하여 LLM이 데이터베이스 스키마를 검색하고, Cypher 쿼리를 실행하고, 노드를 생성하고, 그래프 데이터베이스에서 관계를 설정할 수 있도록 합니다.

  1. 구성 요소
    1. 도구
    2. 즉각적인
  2. Claude Desktop과 함께 사용
    1. Docker 사용(권장)
    2. Node.js와 npm(개발용)
    3. 읽기 전용 모드

Related MCP Servers

  • A
    security
    A
    license
    A
    quality
    This server enables interaction between Neo4j databases and Claude Desktop, allowing users to execute Cypher queries, create nodes, and establish relationships in the database.
    Last updated -
    3
    72
    24
    TypeScript
    MIT License
  • -
    security
    F
    license
    -
    quality
    A server that enables interaction with PostgreSQL, MySQL, MariaDB, or SQLite databases through Claude Desktop using natural language queries.
    Last updated -
    Python
  • -
    security
    F
    license
    -
    quality
    A protocol server that enables LLMs like Claude to interact with MongoDB databases, providing tools for schema exploration, aggregation queries, and data analysis through natural language in Cursor.
    Last updated -
    11
    5
    TypeScript
    • Linux
    • Apple
  • -
    security
    F
    license
    -
    quality
    An MCP server that enables graph database interactions with Neo4j, allowing users to access and manipulate graph data through natural language commands.
    Last updated -
    Python

View all related MCP servers

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