Register Knowerage wherever your MCP host expects server definitions (for example some clients use `.cursor/mcp.json` or `.vscode/mcp.json`; others
Knowerage MCP server exists for a simple reason — assistants are far more useful when they can act on Knowerage directly instead of describing what you should do. Register Knowerage wherever your MCP host expects server definitions (for example some clients use .cursor/mcp.json or .vscode/mcp.json; others use environment variables or a UI—follow your host’s documentation). Use the same server.
The server ships on npm as @mtimma/knowerage, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Once Knowerage is connected, these are the calls the assistant has available:
knowerage_create_or_update_doc — Create/update analysis documentknowerage_parse_doc_metadata — Parse and validate frontmatterknowerage_reconcile_record — Reconcile one analysis recordknowerage_reconcile_all — Full rescan/rebuildknowerage_get_file_status — Analyzed vs missing rangesknowerage_list_stale — List stale/problematic recordsknowerage_list_registry — Full registry snapshot (same shape as registry.json, sorted keys)knowerage_get_tree — Tree/grouped coverageregistry_export_report — Export snapshot (JSON/YAML/TXT/HTML)knowerage_generate_bundle — Chunked export of selected analyses (toc*.md, combined*.md, manifest.json)You will need 2 environment variables: KNOWERAGE_WORKSPACE_ROOT, KNOWERAGE_AUTO_FULL_RECONCILE. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Knowerage's toolset — knowerage_create_or_update_doc, knowerage_parse_doc_metadata, knowerage_reconcile_record and 7 more — is a fair guide to whether it matches your workflow. It is maintained by mtimma; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Knowerage's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| knowerage_create_or_update_doc | Create/update analysis document |
| knowerage_parse_doc_metadata | Parse and validate frontmatter |
| knowerage_reconcile_record | Reconcile one analysis record |
| knowerage_reconcile_all | Full rescan/rebuild |
| knowerage_get_file_status | Analyzed vs missing ranges |
| knowerage_list_stale | List stale/problematic records |
| knowerage_list_registry | Full registry snapshot (same shape as registry.json, sorted keys) |
| knowerage_get_tree | Tree/grouped coverage |
| registry_export_report | Export snapshot (JSON/YAML/TXT/HTML) |
| knowerage_generate_bundle | Chunked export of selected analyses (toc*.md, combined*.md, manifest.json) |
{
"mcpServers": {
"knowerage": {
"command": "npx",
"args": ["@mtimma/knowerage"],
"env": {
"KNOWERAGE_WORKSPACE_ROOT": "${workspaceFolder}",
"KNOWERAGE_AUTO_FULL_RECONCILE": "true"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| KNOWERAGE_WORKSPACE_ROOT | Configuration value read at startup. | Optional |
| KNOWERAGE_AUTO_FULL_RECONCILE | Configuration value read at startup. | Optional |
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.