ckg-mcp · Model Context Protocol Server
Pre-structured, typed dependency graphs your agent traverses instead of text chunks it guesses from. Works with Claude, GPT-4o, Gemini, Llama, Mistral — and any tool that speaks MCP.
Live GPU → LLM inference knowledge graph — 85 nodes, 9 tiers. Click a node to explore. This is what your agent traverses instead of a text chunk. Open full-screen →
Source: ckg-mcp domain nvidia-gpu-inference · 85 nodes · 9 tiers · graphifymd.com
pip install ckg-mcp # Python ≥ 3.10
# or zero-install:
uvx ckg-mcp
{
"mcpServers": {
"ckg": { "command": "ckg-mcp" }
}
}
claude mcp add ckg -- ckg-mcp
{
"mcpServers": {
"ckg": {
"command": "uvx",
"args": ["ckg-mcp"]
}
}
}
from langchain_mcp_adapters.client import (
MultiServerMCPClient
)
client = MultiServerMCPClient({
"ckg": {
"command": "ckg-mcp",
"transport": "stdio"
}
})
tools = await client.get_tools()
list_domains()
# → Available domains (68 free / 97 total): algebra-1, calculus,
# langchain-core, nvidia-gpu-inference, hipaa-compliance ...
query_ckg(domain="calculus", concept="Taylor Series", depth=3)
# → Prerequisites: Power Series → Derivative → Limit ...
# → Builds toward: Maclaurin Series, Fourier Series ...
get_prerequisites(domain="machine-learning-textbook", concept="Backpropagation")
# → Chain: Function → Partial Derivative → Chain Rule →
# Forward Pass → Loss Function → Backpropagation
45 domains · 7,928 queries · clone and re-run it yourself
| Metric | CKG (this tool) | RAG | GraphRAG |
|---|---|---|---|
| Macro-F1 | 0.471 | 0.123 | 0.120 |
| Tokens / query | 269 | 2,982 | 3,450 |
| Cost / query | $0.0010 | $0.0106 | — |
| F1 @ 5 hops | 0.772 | 0.170 | — |
| Full run cost | $7.81 | $76.23 | — |
| Fabricated edges | 0 — by construction | variable | variable |
Benchmark v0.6.2 · open & reproducible · read the paper →
git clone https://github.com/Yarmoluk/ckg-benchmark
pip install -r evaluation/requirements.txt
python evaluation/ckg_harness.py --domain calculus
python evaluation/analyze_results.py
68 domains are free forever. Pro unlocks 29 production domains — healthcare, enterprise data, and AI infrastructure.
export CKG_API_KEY=your-key → restart your MCP client → list_domains() shows all 97 domains. No reinstall, no version change.