Knowledgine
FreeNot checkedLocal-first MCP server that extracts structured knowledge from markdown notes into SQLite with full-text search, enabling AI coding tools to retrieve relevant c
About
Local-first MCP server that extracts structured knowledge from markdown notes into SQLite with full-text search, enabling AI coding tools to retrieve relevant context offline at zero cost.
README
Developer Knowledge Infrastructure — extract structured knowledge from your markdown notes for AI coding tools.
Why knowledgine?
Developers accumulate valuable knowledge in markdown notes — debugging sessions, architectural decisions, problem-solution pairs, and hard-won lessons. That knowledge stays siloed in files, invisible to AI coding assistants.
knowledgine bridges that gap. It scans your markdown files, detects patterns (problem-solution pairs, code snippets, learnings), and stores them in a local SQLite database with FTS5 full-text search. An MCP server exposes that knowledge to any MCP-compatible AI tool, so your assistant can retrieve the right context exactly when you need it.
- Local-first — All data stays in a local SQLite database. No cloud, no API keys.
- $0 cost — Embedding model runs locally. No per-query charges.
- Offline-capable — Full functionality without network access.
- MCP native — Works with Claude Desktop, Cursor, Claude Code out of the box.
Try it now (30 seconds)
npx @knowledgine/cli init --demo --path /tmp/knowledgine-demo
npx @knowledgine/cli search "React performance" --path /tmp/knowledgine-demo/knowledgine-demo-notes
Prerequisites
- Node.js >= 18.17.0 (managed via Volta or fnm recommended)
- pnpm >= 9 (for contributing / local builds)
- Native build tools for
better-sqlite3:- macOS:
xcode-select --install - Linux (Ubuntu/Debian):
sudo apt-get install build-essential python3 - Windows:
npm install --global windows-build-tools
- macOS:
Quick Start
Three steps from install to working MCP integration.
1. Install
npm install -g @knowledgine/cli
2. Index your notes
knowledgine init --path ./my-notes
This scans all markdown files and builds .knowledgine/index.sqlite with FTS5 full-text search. No model download required.
To enable semantic search (optional, downloads ~23MB model):
knowledgine init --path ./my-notes --semantic
# or upgrade an existing index:
knowledgine upgrade --semantic --path ./my-notes
3. Connect your AI tool
knowledgine setup --target claude-desktop --path ./my-notes
This generates the MCP configuration for your AI tool. Add --write to write it directly:
knowledgine setup --target claude-desktop --path ./my-notes --write
Restart your AI tool to activate. Verify with:
knowledgine status --path ./my-notes
Commands
| Command | Description |
|---|---|
init |
Scan and index markdown files (FTS5 full-text search by default) |
start |
Start MCP server with file watching for incremental updates |
setup |
Generate MCP configuration for AI tools (Claude Desktop, Cursor, Claude Code) |
status |
Check setup status (database, model, MCP config) |
upgrade |
Enable additional capabilities (e.g., semantic search) |
search |
Search indexed notes (keyword, semantic, or hybrid mode) |
capture |
Capture and manage knowledge snippets from text, URL, or file |
ingest |
Ingest knowledge from external sources (Git, GitHub, Obsidian, Claude Sessions) |
feedback |
Manage entity extraction feedback (list, apply, dismiss, report) |
plugins |
Manage ingest plugins (list, status) |
tool |
Execute MCP tools from CLI (search, related, stats, entities) |
demo |
Initialize demo environment or clean up demo files |
init
knowledgine init --path ./my-notes
knowledgine init --path ./my-notes --semantic
--path <dir>: Root directory to scan (default: current directory)--semantic: Enable semantic search (downloads embedding model and generates embeddings)
upgrade
knowledgine upgrade --semantic --path ./my-notes
--semantic: Download embedding model and generate embeddings for all indexed notes--path <dir>: Root directory (default: current directory)
setup
knowledgine setup --target claude-desktop --path ./my-notes
knowledgine setup --target cursor --path ./my-notes --write
--target <tool>: Target AI tool (claude-desktop,cursor)--path <dir>: Root directory of indexed notes--write: Write configuration to file (default: dry-run, shows config only)
status
knowledgine status --path ./my-notes
Shows database stats, model availability, MCP configuration status, and overall readiness. The Database section now also includes a per-category storage breakdown (notes, fts, embeddings, graph, events, memory, other, plus freelist and wal when non-zero) so it is easy to see which subsystem dominates the on-disk footprint.
search
knowledgine search "React performance" --path ./my-notes
knowledgine search "architecture decisions" --mode semantic --path ./my-notes
knowledgine search "debugging tips" --mode hybrid --path ./my-notes --format table
--mode <mode>: Search mode (keyword,semantic,hybrid). Default:keyword--format <format>: Output format (plain,table,json). Default:plain--limit <n>: Maximum results. Default: 20--related <noteId>: Find related notes by note ID--demo: Search in demo notes--projects <names-or-paths>: Search across multiple knowledgine projects (comma-separated). See Cross-Project Search below.
Cross-Project Search
Search across multiple knowledgine projects in a single query. Results are ranked by FTS5 score (descending). At most 10 projects are searched per query (any extras are dropped with a stderr warning). Project databases are opened sequentially, not in parallel.
You can pass either registered names from .knowledginerc (when configured)
or absolute / relative / ~/ paths directly:
# Registered names from .knowledginerc
knowledgine search "auth flow" --projects backend,frontend
# Dynamic paths — no rc registration required
knowledgine search "auth flow" --projects ~/work/<your-repo>,./sibling-repo
# Mixed
knowledgine search "auth flow" --projects backend,/absolute/path/to/repo
Path detection: an argument is treated as a path if it begins with /, ./,
../, ~/, or .. Otherwise it is looked up as a registered project name.
When path-detected, registered name lookup is skipped (paths take precedence).
.knowledginerc example:
{
"projects": [
{ "name": "backend", "path": "/Users/me/code/backend" },
{ "name": "frontend", "path": "/Users/me/code/frontend" },
],
}
When to use which:
- Registered names when paths are stable, shared across team members, or you want short CLI invocations.
- Dynamic paths for ad-hoc exploration, CI/scripts with computed paths,
or one-off cross-project queries without modifying
.knowledginerc.
Constraints:
- Each target project must contain
.knowledgine/index.sqlitewithschema_version >= 8. When at least one project resolves, any path that lacks the database file is skipped with a stderr warning and the search continues. When none of the supplied entries resolves, the command exits with status1and a Case A/B/C/D error message explaining what was wrong. - Identical basenames across paths produce ambiguous
projectNamein output; use registered names in.knowledginercto disambiguate. - Glob patterns, remote URLs, and dynamic-path support via the MCP server's
search_knowledgetool are out of scope (future tickets).
capture
knowledgine capture add "TIL: Use React.memo for expensive components" --path ./my-notes
knowledgine capture add --url https://example.com/article --path ./my-notes
knowledgine capture list --path ./my-notes
knowledgine capture delete <id> --path ./my-notes
ingest
knowledgine ingest --source markdown --path ./my-notes
knowledgine ingest --source github --repo owner/repo --path ./my-notes
knowledgine ingest --source claude-sessions --path ./my-notes
knowledgine ingest --source cline-sessions --path ./my-notes
knowledgine ingest --all --path ./my-notes
# Run the Observer/Reflector agents after ingestion to extract patterns,
# entities and a 6-vector classification. Optional opt-in.
# See docs/agents/observer.md for details.
knowledgine ingest --source markdown --observe --path ./my-notes
knowledgine ingest --source markdown --observe --observe-limit 200 --path ./my-notes
Comparison
| Feature | knowledgine | Mem0 | Obsidian Search |
|---|---|---|---|
| Cost | Free (local) | API costs | Plugin costs |
| Data Privacy | 100% local | Cloud | Local |
| Offline | Yes | No | Yes |
| AI Integration | MCP native | REST API | Limited |
| Setup | 1 command | Account + API key | App + plugins |
| Auto-extraction | Patterns, entities | Manual | Manual |
| Search | FTS5 + semantic | Vector | Basic text |
MCP Tools
Once connected, the following tools are available to your AI assistant.
| Tool | Description | Key Parameters |
|---|---|---|
search_knowledge |
Full-text search across all indexed notes using FTS5 | query (string, required), limit (number, optional, default 10) |
find_related |
Find notes related to a given note by tags, title similarity, time proximity, and problem-solution pairs | notePath (string, required), strategies (array, optional) |
get_stats |
Retrieve knowledge base statistics (total notes, indexed size, last updated) | — |
search_entities |
Search knowledge graph entities by name or type | query (string, required), entityType (string, optional) |
get_entity_graph |
Get entity with its relationships and linked notes | entityName (string, required) |
MCP Client Setup
Claude Desktop
Use knowledgine setup for automatic configuration, or manually add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or ~/.config/claude/claude_desktop_config.json (Linux):
{
"mcpServers": {
"knowledgine": {
"command": "npx",
"args": ["-y", "@knowledgine/cli", "start", "--path", "/path/to/notes"]
}
}
}
Cursor
Use knowledgine setup --target cursor for automatic configuration, or manually add to .cursor/mcp.json in your project root (recommended) or ~/.cursor/mcp.json for global use.
Using ${workspaceFolder} to automatically point to the current project:
{
"mcpServers": {
"knowledgine": {
"command": "npx",
"args": ["@knowledgine/cli", "start"],
"env": {
"KNOWLEDGINE_ROOT_PATH": "${workspaceFolder}"
}
}
}
}
For detailed setup instructions, variable expansion reference, and troubleshooting, see the Cursor Setup Guide.
Architecture
@knowledgine/cli
├── @knowledgine/mcp-server
│ └── @knowledgine/core
├── @knowledgine/ingest
└── @knowledgine/core
| Package | Description |
|---|---|
@knowledgine/core |
Knowledge extraction engine. Detects patterns in markdown (problem-solution pairs, code blocks, tags), manages the 3-tier memory model, and provides FTS5 search via SQLite. |
@knowledgine/mcp-server |
MCP server that exposes search_knowledge, find_related, get_stats, search_entities, and get_entity_graph tools to MCP-compatible AI clients. |
@knowledgine/cli |
Command-line interface. init indexes notes and downloads the embedding model; setup configures AI tools; start launches the MCP server with file watching. |
@knowledgine/ingest |
Plugin-based ingestion engine. Collects knowledge from Git history, GitHub, Obsidian, and Claude Sessions. |
Configuration
knowledgine uses sensible defaults. You can override them by passing options to init or start, or by editing the generated config.
| Field | Default | Description |
|---|---|---|
dataDir |
.knowledgine |
Directory where the SQLite index is stored, relative to --path. |
watchPatterns |
["**/*.md"] |
Glob patterns for files to index and watch. |
ignorePatterns |
["node_modules/**"] |
Glob patterns for files to exclude. |
.knowledginerc.json
Create a .knowledginerc.json file in your project root for persistent configuration:
{
"semantic": true,
"defaultPath": "./my-notes"
}
| Field | Default | Description |
|---|---|---|
semantic |
false |
Enable semantic search |
defaultPath |
— | Default --path value when omitted |
When defaultPath is set, the --path option can be omitted from all commands (init, start, search, ingest, etc.). knowledgine init automatically writes defaultPath to .knowledginerc.json after the first run.
Troubleshooting
Native build failure (better-sqlite3)
# macOS
xcode-select --install
# Ubuntu/Debian
sudo apt-get install build-essential python3
# Windows
npm install --global windows-build-tools
Embedding model download failure
If init --semantic or upgrade --semantic fails to download the model, text search (FTS5) still works. Retry with:
knowledgine upgrade --semantic --path ./my-notes
MCP connection issues
- Verify setup:
knowledgine status --path ./my-notes - Re-generate config:
knowledgine setup --target claude-desktop --path ./my-notes --write - Restart your AI tool after writing the config
- Check that the path in the config matches your notes directory
Community
License
MIT — see LICENSE for details.
Install Knowledgine in Claude Desktop, Claude Code & Cursor
unyly install knowledgineInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add knowledgine -- npx -y @knowledgine/cliFAQ
Is Knowledgine MCP free?
Yes, Knowledgine MCP is free — one-click install via Unyly at no cost.
Does Knowledgine need an API key?
No, Knowledgine runs without API keys or environment variables.
Is Knowledgine hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Knowledgine in Claude Desktop, Claude Code or Cursor?
Open Knowledgine on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolCompare Knowledgine with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
