a month ago
Local MCP server that allows your agent to track documentation coverage over code repository.
Ask the agent to analyse your code using Knowerage. Afterwards, it will be able to answer what percentage of files or lines have been documented so far, and which parts of the project require analysis.
The MCP is started locally by the agent, and no network calls are made.
Additionally, it can create an export of all the analysis files in one combined file, and mark analysis files as stale if the source code has been updated.
Server Config
{
"mcpServers": {
"knowerage": {
"command": "npx",
"args": [
"@mtimma/knowerage"
],
"env": {
"KNOWERAGE_WORKSPACE_ROOT": "${workspaceFolder}",
"KNOWERAGE_AUTO_FULL_RECONCILE": "true"
}
}
}
}