knowledgebased
Provides semantic search and a tag-based knowledge graph for any project, auto-discovering local markdown knowledge bases with YAML frontmatter.
README
knowledgebased
A reusable Model Context Protocol server that provides semantic search and a tag-based knowledge graph for any project. Auto-discovers a knowledge directory from cwd; silently disables when absent.
Written in TypeScript. Uses local sentence-transformer embeddings (Xenova/multilingual-e5-small) — no API keys, no network calls after the first model download.
Features
- 🔍 Semantic search — embedding-based natural language queries (multilingual)
- 🤖 RAG search — tiered results with automatic LLM summarization via MCP sampling
- 🏷️ Tag search with graph traversal — follow
related:links across fragments - 📝 Markdown fragments with YAML frontmatter — human-readable, git-friendly
- 🚀 Zero overhead when unused — exits silently if no knowledge is present
- 🔧 Flexible auto-discovery — co-located, hidden, sibling, or user-global
Quick Start
Install
npm install -g knowledgebased
# or run on demand:
npx -y knowledgebased setup
setup registers the server in ~/.copilot/mcp-config.json (or you can configure any MCP client manually). It will:
- Auto-activate in any project where knowledge is discovered
- Stay disabled (zero overhead) elsewhere
Per-repo install (any MCP client)
Add to your .mcp.json / client config:
{
"mcpServers": {
"knowledge": {
"type": "stdio",
"command": "npx",
"args": ["-y", "knowledgebased"]
}
}
}
Knowledge Discovery
The server discovers knowledge from two independent phases, then unions all results.
Given cwd = ~/workspace/my-project/, here is every location the server checks:
~/
├── .knowledgebased.json ← Phase 2: user-global config (always read)
├── notes/ ← Phase 2: external KB (declared in bases)
│ └── *.md
│
└── workspace/
├── my-project.knowledge/ ← Phase 1 ④: sibling folder
│ └── *.md
│
└── my-project/ ← cwd
├── .knowledge.json ← Phase 1 ①: config pointer (highest pri)
├── knowledge/ ← Phase 1 ②: co-located, visible
│ └── *.md
├── .knowledge/ ← Phase 1 ③: co-located, hidden
│ └── *.md
└── src/
Phase 1 — project source
Walks up from cwd. At each ancestor directory, tries four patterns in order — first match stops the entire walk:
| Priority | Pattern | Within git root | Beyond git root |
|---|---|---|---|
| ① | .knowledge.json |
✅ | ✅ (explicit intent) |
| ② | knowledge/ |
✅ | ❌ (too generic) |
| ③ | .knowledge/ |
✅ | ❌ (too generic) |
| ④ | ../<project>.knowledge/ |
✅ | ✅ (explicit naming) |
Beyond the git root, only explicitly-intentioned patterns (① config pointer and ④ sibling) are checked. If no git root is found at all, generic patterns are never used — only ① and ④ apply. This prevents accidental matches with unrelated knowledge/ directories outside a project context.
Result: 0 or 1 project source (alias: repo, refs validated against cwd).
Phase 2 — external knowledge bases
Always runs (even if Phase 1 found a project source). Reads ~/.knowledgebased.json and matches cwd against repos entries.
Result: 0–N external sources (alias: base ID, refs unscoped). Both phases are unioned and deduped by canonical directory hash.
User-global config (~/.knowledgebased.json)
Defines named knowledge bases and binds them to repos:
{
"bases": {
"personal": "~/notes",
"team": { "knowledge": "~/team/conventions", "cacheDir": "~/.cache/team" }
},
"repos": {
"*": ["personal"],
"~/workspace/my-project": ["team"]
}
}
| Field | Description |
|---|---|
bases.<id> |
A string path (shorthand) or { "knowledge": "...", "cacheDir": "..." }. Paths support ~ expansion. |
repos."*" |
Wildcard — these bases are active in every project. |
repos.<path> |
Array of base IDs to activate when cwd is inside this path. Longest-prefix match wins (segment-boundary, case-insensitive on Windows). |
In the example above:
personalis available everywhere (wildcard"*")teamis only available when working inside~/workspace/my-project- Fragments from external sources are prefixed with their alias:
personal@notes/foo.md
Per-project config (.knowledge.json)
Points to a knowledge directory that lives elsewhere:
{ "knowledge": "../shared-kb", "cacheDir": "./.cache/embeddings" }
| Field | Required | Description |
|---|---|---|
knowledge |
optional | Path to the knowledge directory. Resolved relative to the config file. Defaults to ./knowledge. |
cacheDir |
optional | Override for the embedding cache. Defaults to ~/.cache/knowledgebased/<hash>. |
Validation rules
These conditions cause a loud startup error:
reposreferences a non-existent base ID- Base ID is
"*", or contains@,/, or spaces - Two bases resolve to the same canonical directory
Knowledge Fragments
Markdown files with YAML frontmatter:
---
tags: [workflow, git]
related: [workflow/branch-naming]
source: session/2026-04-21
verified: false
refs: [src/utils.ts::parseArgs]
---
# Fragment Title
Content goes here...
MCP Tools
| Tool | Description |
|---|---|
search_knowledge |
Tag-based search with graph traversal |
search_semantic |
Embedding-based semantic search with similarity scores |
search_rag |
Semantic search with automatic LLM summarization via MCP sampling |
list_tags |
List all tags with counts |
list_sources |
List loaded knowledge sources |
add_knowledge |
Create a new fragment |
update_knowledge |
Update an existing fragment |
delete_knowledge |
Delete a fragment permanently |
audit_knowledge |
Validate refs and related links |
reload_sources |
Re-discover sources from config |
Which search tool to use?
User question
│
├─ "What topics does the KB cover?" → search_semantic (explore)
│ Low threshold, scan fragment titles and scores.
│
├─ "How does X work?" → search_rag (answer)
│ Returns concise summary + references.
│ If key details are missing, follow up with search_knowledge.
│
└─ "Give me everything about Y" → search_knowledge (enumerate)
tags=["Y"], returns full unabridged content.
search_rag — RAG-style search
search_rag combines semantic search with MCP client sampling to deliver concise, query-aware results. Results are split into tiers:
| Tier | Score | Behavior |
|---|---|---|
| direct | ≥ directThreshold (0.85) |
Full content returned verbatim |
| related | One-hop graph neighbors of direct hits | Summarized via LLM sampling |
| summarized | ≥ threshold (0.80), < directThreshold |
Summarized via LLM sampling |
Every response includes a references table listing all used fragments with their similarity score, tier, and reason for inclusion.
When the MCP client doesn't support sampling, summarized/related fragments fall back to metadata-only output (title, tags, and a content preview).
Parameters:
| Parameter | Default | Description |
|---|---|---|
query |
— | Natural language search query |
threshold |
0.80 | Minimum similarity score for inclusion |
directThreshold |
0.85 | Score above which fragments are returned verbatim |
maxTokens |
500 | Max tokens for the LLM summary |
CLI Commands
knowledgebased setup # Register globally in ~/.copilot/mcp-config.json
knowledgebased init # Create knowledge/ in cwd
knowledgebased init --knowledge ../other/kb # Create .knowledge.json pointing elsewhere
Development
npm install
npm run build # compile TS → dist/
npm test # run unit tests via node:test + tsx
npm start # run from compiled output
npm run watch # incremental rebuild
License
MIT
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。