Kuzu Knowledge Graph MCP Server
Connects to an embedded Kuzu graph database and provides read-only MCP tools for AI clients to query a knowledge graph.
README
Kuzu Knowledge Graph MCP Server
A beginner-friendly Model Context Protocol server that connects to an embedded Kuzu graph database and lets AI clients read a knowledge graph.
This project is designed for a first Kuzu journey:
- Create a small knowledge graph.
- Store it in Kuzu.
- Expose read-only graph tools through MCP.
- Connect the MCP server to an AI client.
- Ask graph-backed questions.
What You Get
- TypeScript MCP server over stdio
- Embedded Kuzu database connection
- Auto-created graph schema
- Optional sample data seed
- Read-only Cypher guard
- Six MCP tools
- One schema resource
- Dockerfile
- Step-by-step docs
Why Kuzu
Kuzu is an embedded property graph database. It runs inside your application process, stores graph data on disk, and supports Cypher queries. That makes it a good fit for local or product-embedded knowledge graph workloads where you do not want to run a separate graph database server.
Architecture
AI Client
|
| MCP stdio
v
Kuzu Knowledge Graph MCP Server
|
| Kuzu Node.js API
v
Embedded Kuzu DB directory
Requirements
- Node.js 20 or newer
- npm, pnpm, or another Node package manager
- macOS, Linux, or Windows with a supported Kuzu Node package
Quick Start
git clone <your-repo-url>
cd kuzu-knowledge-graph-mcp
npm install
npm run build
npm run seed
npm run smoke
Expected smoke result:
{
"status": "ok",
"nodeCounts": {
"Document": 4,
"Chunk": 8,
"Entity": 8,
"Topic": 4
}
}
Run The MCP Server
Development:
npm run dev
Production-style:
npm run build
npm run start
The server uses stdio, so it will appear to wait silently. That is normal. MCP clients talk to it through stdin/stdout.
Environment Variables
Copy the example file:
cp .env.example .env
Important settings:
| Variable | Default | Meaning |
|---|---|---|
KUZU_DB_PATH |
./data/kuzu-demo |
Directory where Kuzu stores the database |
KUZU_AUTO_CREATE_SCHEMA |
true |
Create node and relationship tables on startup |
KUZU_AUTO_SEED |
true |
Seed sample data when the database has no documents |
MCP_SERVER_NAME |
kuzu-knowledge-graph |
Name shown to MCP clients |
Connect To Claude Desktop Or Another MCP Client
Build first:
npm run build
Then add a config like this to your MCP client. Replace the paths with your real absolute path.
{
"mcpServers": {
"kuzu-knowledge-graph": {
"command": "node",
"args": ["/absolute/path/to/kuzu-knowledge-graph-mcp/dist/src/index.js"],
"env": {
"KUZU_DB_PATH": "/absolute/path/to/kuzu-knowledge-graph-mcp/data/kuzu-demo",
"KUZU_AUTO_CREATE_SCHEMA": "true",
"KUZU_AUTO_SEED": "true"
}
}
}
}
An editable copy is available in mcp-config.example.json.
Available MCP Tools
kg_overview: graph counts, topics, and exampleskg_search: keyword search across documents, chunks, entities, and topicskg_get_document_context: document, chunks, topics, and entitieskg_entity_neighborhood: one-hop entity relationships and supporting chunkskg_question_context: compact graph-backed evidence pack for a natural-language questionkg_readonly_cypher: guarded read-only Cypher query
Full tool guide: docs/TOOLS.md
Create And Run A Simple MCP Client
This repo includes a beginner MCP client that starts the Kuzu MCP server, lists tools, reads the schema resource, and calls graph tools.
npm run client:demo
Client guide: docs/CLIENT.md
Example Journey
The included sample graph models a GenAI Workbench support and deployment knowledge graph.
Try asking your MCP client:
Use the Kuzu knowledge graph. How does the context graph reduce AI cost and how do I deploy it safely?
The expected journey:
- Search chunks for context graph, cost, deployment, and safety.
- Expand to documents such as
doc-context-costanddoc-deployment. - Pull entities like Kuzu, Context Graph, API Key, Tenant Isolation, and REST API.
- Return a small evidence pack for the LLM.
Detailed walkthrough: docs/DATA_JOURNEY.md
Useful Read-Only Cypher
MATCH (d:Document)-[:HAS_CHUNK]->(c:Chunk)
RETURN d.title AS document, c.section AS section, c.text AS text
LIMIT 5
MATCH (a:Entity)-[r:RELATED_TO]->(b:Entity)
RETURN a.name AS fromEntity, r.relation AS relation, b.name AS toEntity
LIMIT 10
More examples: examples/graph-journey.cypher
Deployment
See docs/DEPLOYMENT.md.
Project Structure
src/
index.ts MCP server entrypoint
kuzuGraph.ts Kuzu connection and query wrapper
knowledgeGraphService.ts Graph read operations
schema.ts Kuzu graph schema
seedData.ts Sample data journey
cypher.ts Read-only Cypher validation
scripts/
seed.ts Reset and seed the demo graph
smoke.ts Build confidence test
docs/
DATA_JOURNEY.md
DEPLOYMENT.md
TOOLS.md
examples/
graph-journey.cypher
questions.md
Notes For Beginners
- Kuzu is embedded. You are not connecting to a database server URL. You are opening a database directory.
- MCP stdio servers do not expose an HTTP port. Your AI client starts the server command and talks through standard input/output.
- Do not write normal logs to stdout in an MCP server. stdout is reserved for protocol messages.
- Keep raw Cypher read-only unless you are building an admin-only server.
References
- Kuzu documentation: https://kuzudb.github.io/docs/
- Kuzu Node.js API: https://kuzudb.github.io/docs/client-apis/nodejs/
- MCP TypeScript SDK: https://github.com/modelcontextprotocol/typescript-sdk
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。