kg-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kg-mcpfind what we know about the payment retry logic"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
kg - local knowledge graph for your AI assistants
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
*.kgfiles with readable diffsLocal-first — your project memory stays on your machine in git-friendly format
Works with MCP clients — connect it as a local stdio MCP server
Related MCP server: Agentic Memory 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-cliFrom script
Recommended install:
curl -sSL https://raw.githubusercontent.com/nnar1o/kg/master/install.sh | shYou 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:
restart your AI client,
confirm the
kgMCP server is available,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
helpCore verbs
Verb | What it does |
| search nodes by text |
| fetch one node by id |
| create a node (type inferred from id prefix) |
| update node fields |
| delete a node |
| create an edge (alias: |
| delete an edge (alias: |
| list graph contents |
| show graph statistics |
| switch active graph |
| get help for a verb or all |
| give feedback on search results |
| 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-exampleThis 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
paymentsgraph?""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.kgtext graphs.backend = "redb"stores graphs in.dbfiles.graph_dirsets a primary graph directory.graph_dirsadds extra directories scanned bykg listand 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
*.kggraph 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.*.gzIn practice:
*.kgis the main graph file you usually want to review and commit,*.kglogis a local access/feedback log,*.kgindexis a generated local index,*.event.logis a local append-only change timeline,*.bakis the previous on-disk version from the last write,*.bck.*.gzare periodic compressed backup snapshots,*.migration.logis 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.htmlYou can keep the generated HTML as a shareable visual snapshot of the current graph.
Documentation
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 issues
Contact
For questions or feedback: nnar10@proton.me
This server cannot be installed
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 Connectors
Personal wiki and memory layer for AI assistants. Persistent, structured memory across sessions.
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Persistent knowledge graph for AI-augmented teams. Store decisions, findings, and standing rules across agent sessions with semantic search and typed connections. Includes cross-session memory, audit trail, workspace isolation, and secret detection. Built for teams running agents that need to remember. Free until launch with team tier as default, anon trial available.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides AI assistants with persistent graph-based memory capabilities using Neo4j, enabling semantic search, relationship tracking, and knowledge organization across multiple project contexts.1,58431MIT
- AlicenseNot gradedqualityNot gradedmaintenanceProvides enterprise-grade persistent memory for AI assistants with complete offline operation, enabling intelligent knowledge storage, branch-based organization, and smart search across project domains while keeping all data local and secure.

Doclea MCPofficial
AlicenseNot gradedqualityCmaintenanceProvides persistent memory for AI coding assistants, storing and retrieving architectural decisions, patterns, and solutions across sessions using semantic search, while also offering git integration for commit messages and code expertise mapping.MIT- AlicenseNot gradedqualityBmaintenanceGives AI assistants persistent, queryable project memory for decisions, patterns, and rules, reducing the need to re-explain context in every prompt.11Apache 2.0
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/nnar1o/kg'
If you have feedback or need assistance with the MCP directory API, please join our Discord server