Local knowledge graph memory that runs as an MCP server and stores project context in git-friendly `.kg` files. Exposes tools to create nodes and edges, query facts, and update the graph as you work. Better than RAG when you want explicit relationships, persistent memory between sessions, and something you can inspect and diff. Works stdio, stores graphs in `~/.kg/graphs` by default, and supports both manual graph building from docs and automatic extraction from codebases with symbol parsing for Rust, Java, Python, TypeScript, and C/C++. Good for keeping architecture decisions, dependencies, and workflows in a structure your assistant can read and modify without starting from zero each conversation.
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.
*.kg files with readable diffsClassic RAG is good for retrieving text chunks from documents.
kg-mcp is better when you want:
cargo install kg-cli
Recommended install:
curl -sSL https://raw.githubusercontent.com/nnar1o/kg/master/install.sh | sh
You can also download a ready binary from GitHub Releases.
kg-mcp to Your AI ClientAdd kg-mcp as a local stdio MCP server.
Example config:
{
"mcpServers": {
"kg": {
"command": "/absolute/path/to/kg-mcp"
}
}
}
After that:
kg MCP server is available,Full MCP setup and reference: docs/mcp.md
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.
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.
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:
payments graph?"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.
.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.The default graph directory is ~/.kg/graphs.
You can put that directory under git.
Recommended approach:
*.kg graph files in git,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.
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.
docs/mcp.md - MCP setup and tool referencedocs/ai-prompt-graph-from-docs.md - longer prompt for document ingestiondocs/build-graph-from-docs.md - graph-building workflow from docsdocs/troubleshooting.md - common issuesFor questions or feedback: nnar10@proton.me
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent