kg-mcp

kg-mcp

Enables AI assistants to store, query, and update persistent project knowledge as a local, Git-friendly knowledge graph, providing structured memory across sessions.

Category
访问服务器

README

kg - local knowledge graph for your AI assistants

<img width="434" height="369" alt="image" src="https://github.com/user-attachments/assets/f53bf36f-ac6e-4f83-afaf-00ea9ef12b7e" />

CI Release License

Beta - APIs may still change and some bugs are still expected.

kg gives your AI assistant persistent, structured, editable project memory stored locally as a knowledge graph.

Instead of relying only on document chunk retrieval, you can keep architecture, decisions, incidents, rules, dependencies, and workflows in a graph that is readable, reviewable, and Git-friendly.

Use it when you want your assistant to understand an existing project across sessions — not start from zero every time.

Why use it

  • Persistent memory — keep project knowledge between conversations
  • Structured, not fuzzy — inspect nodes, edges, facts, and gaps directly
  • Editable and reviewable — store graphs as *.kg files with readable diffs
  • Local-first — your project memory stays on your machine in git-friendly format
  • Works with MCP clients — connect it as a local stdio MCP server

Why not just RAG

Classic RAG is good for retrieving text chunks from documents.

kg-mcp is better when you want:

  • stable project memory instead of repeated retrieval
  • explicit facts, relations, and dependencies
  • graph updates during real work with the assistant
  • something you can inspect, version, diff, and improve over time

Installation

From crates.io

cargo install kg-cli

From script

Recommended install:

curl -sSL https://raw.githubusercontent.com/nnar1o/kg/master/install.sh | sh

You can also download a ready binary from GitHub Releases.

Connect kg-mcp to Your AI Client

Add kg-mcp as a local stdio MCP server.

Example config:

{
  "mcpServers": {
    "kg": {
      "command": "/absolute/path/to/kg-mcp"
    }
  }
}

After that:

  1. restart your AI client,
  2. confirm the kg MCP server is available,
  3. start using the prompts below.

Full MCP setup and reference: docs/mcp.md

SCL quickstart

kg understands short, verb-first English commands (SCL — Simple Command Language). The active graph is resolved from your config automatically.

find "compressor defrost"
get concept:refrigerator
add concept:smart_fridge --name "Smart Fridge" --description "Connected refrigerator"
modify concept:smart_fridge --importance 0.9
remove concept:old_idea
connect process:compressor_control TRIGGERS process:auto_defrost
disconnect process:compressor_control TRIGGERS process:auto_defrost
list nodes
stats
use fridge
help

Core verbs

Verb What it does
find <query> search nodes by text
get <id> fetch one node by id
add <id> --name "Name" create a node (type inferred from id prefix)
modify <id> --field value update node fields
remove <id> delete a node
connect <src> <REL> <dst> create an edge (alias: add edge)
disconnect <src> <REL> <dst> delete an edge (alias: remove edge)
list nodes|edges|types|relations|graphs list graph contents
stats show graph statistics
use <graph> switch active graph
help [verb] get help for a verb or all
feedback <uid> yes|no|nil|pick <n> give feedback on search results
strict disable defaults for following lines

IDs

Format: <type>:snake_case — e.g. concept:fridge, bug:door_seal, process:compressor_cycle.

Relations

HAS USES STORED_IN TRIGGERS CREATED_BY AFFECTED_BY AVAILABLE_IN DOCUMENTED_IN DEPENDS_ON TRANSITIONS DECIDED_BY GOVERNED_BY READS_FROM

Tips

  • Flags go after positional args. Quote multiword values.
  • Separate commands with ; or newlines. Lines starting with # are comments.
  • Use use <graph> to switch graphs within a script.
  • Canonical kg <graph> node find ... commands still work as fallback.
  • Full SCL reference: docs/scl.md

Generate a Graph

This is the first workflow for a new project: ask the assistant to create or extend a graph from your documentation.

By default, graphs are stored in ~/.kg/graphs as *.kg files.

Minimal prompt:

You are connected to kg-mcp.

Project graph name: payments

Build or extend this graph from the project documentation I provide.
Use `payments` as the graph name for all graph operations.

Only add facts grounded in source material.
If an important fact is missing and can be inferred safely from the provided docs, update the graph.
If something is ambiguous, ask or record it as a note instead of inventing facts.

Example prompt with documents:

Use kg-mcp to build or extend the `payments` graph from these documents:
- docs/payments/overview.md
- docs/payments/retries.md
- docs/payments/providers.md

Only add facts grounded in the documents.
If something is ambiguous, keep it out of the graph or record it as a note.
When you finish, summarize what was added, what remains unclear, and what document should be ingested next.

Longer prompt for this workflow: docs/ai-prompt-graph-from-docs.md

For a ready-made repository example, run cargo run --bin repo-example to generate repo-example.kg from this repo.

Automatic graph for a directory

kg can turn an existing folder into a graph automatically. It scans the directory tree, recognizes many common file types, extracts symbols for Rust, Java, JavaScript/TypeScript, Python, and C/C++, and keeps the generated structure separate from the manual graph.

For markdown-like documents, it also creates document (GDOC) and chapter (GSEC) nodes with section content.

It is a fast way to get a useful map of a codebase or workspace without modeling everything by hand. The generated index is local, refreshable, and safe to ignore in git.

Example:

cargo run --bin repo-example

This generates repo-example.kg from this repository as a local demo.

Ask the Assistant About Facts in the Graph

Once the graph exists, the normal workflow is to ask the assistant to inspect it and answer questions from it.

Example prompt:

Use kg-mcp to inspect my existing `payments` graph.

I want to understand:
- how payment authorization works,
- what triggers retries,
- which external providers are involved,
- which datastore reads and writes are part of the flow.

If the graph is missing critical information, say exactly what is missing.

Other useful questions:

  • "What rules control retries in the payments graph?"
  • "Which systems write to the orders datastore?"
  • "What is missing or weak in this graph?"
  • "Which nodes and edges explain the authorization flow?"

Add or Update Facts Through the Assistant

You can also ask the assistant to improve the graph while you work.

Example prompt:

Use kg-mcp to review my existing `payments` graph.

Find:
- missing important nodes,
- weak descriptions,
- missing facts,
- suspicious or low-value edges.

Apply safe improvements where possible.
Only add facts grounded in the graph, the provided docs, or the current discussion.
If something is ambiguous, leave it out or add a note.

When you finish, summarize:
- what was wrong,
- what you changed,
- what still needs manual review.

This works best when your main system prompt or project prompt already tells the assistant which graph belongs to the project.

Minimal project-level prompt:

You are connected to kg-mcp.
Project graph name: payments.
Use this graph for relevant reads and updates in this project.
If you notice important missing information that is grounded in the available docs or conversation context, update the graph as part of your work.
If uncertain, ask or add a note instead of inventing facts.

Tips

Project config (.kg.toml)

kg looks for .kg.toml in the current directory and its parent directories.

Example:

backend = "json" # json backend writes native .kg files by default
graph_dir = ".kg/graphs"
graph_dirs = ["../shared-graphs", "../team-graphs"]
nudge = 20
user_short_uid = "dev_01"

[graphs]
payments = "graphs/payments.kg"

Notes:

  • backend = "json" is the default and prefers .kg text graphs.
  • backend = "redb" stores graphs in .db files.
  • graph_dir sets a primary graph directory.
  • graph_dirs adds extra directories scanned by kg list and graph resolution.

Keep Graphs in Git

The default graph directory is ~/.kg/graphs.

You can put that directory under git.

Recommended approach:

  • keep the main *.kg graph files in git,
  • ignore generated sidecars and local operational files,
  • treat backup snapshots and event logs as local machine history unless you explicitly want to version them.

Suggested .gitignore:

*.kglog
*.kgindex
*.event.log
*.migration.log
*.bak
*.bck.*.gz

In practice:

  • *.kg is the main graph file you usually want to review and commit,
  • *.kglog is a local access/feedback log,
  • *.kgindex is a generated local index,
  • *.event.log is a local append-only change timeline,
  • *.bak is the previous on-disk version from the last write,
  • *.bck.*.gz are periodic compressed backup snapshots,
  • *.migration.log is a migration report when older graphs are converted.

*.kg is git-friendly and intentionally structured to make diffs readable and merges easier when several people work on the same graph.

Export a Graph to HTML

To generate an interactive HTML view of a graph:

kg graph payments export-html --output payments.html

You can keep the generated HTML as a shareable visual snapshot of the current graph.

Documentation

Contact

For questions or feedback: nnar10@proton.me

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选