-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Description
When `kibi-mcp` is launched with `--diagnostic-mode` from OpenCode, no `usage.log` is created under `.kb`, even though MCP queries are definitely executed successfully.
Reproduction
-
Configure OpenCode with a local Kibi MCP server, for example:
```json
{
"mcp": {
"kibi": {
"type": "local",
"command": [
"node",
"node_modules/kibi-mcp/bin/kibi-mcp",
"--diagnostic-mode"
],
"enabled": true
}
}
}
``` -
Start OpenCode in a repo with Kibi initialized.
-
Run MCP queries such as `kb_query`.
-
Inspect `.kb/` and `.kb/branches//`.
Expected
One of these should happen:
- `--diagnostic-mode` creates a diagnostic/query usage log (for example `usage.log`), or
- docs clearly describe where diagnostic output goes, or
- startup fails fast if `--diagnostic-mode` is not actually supported.
Actual
- The MCP server connects successfully.
- MCP queries succeed.
- `.kb/branches//audit.log` exists.
- No `usage.log` is created anywhere under `.kb`.
- `audit.log` appears to contain only write-side changesets, not query/read traffic.
Evidence / suspected cause
A few things suggest the flag is currently a no-op:
- This repo's own `opencode.json` launches `packages/mcp/bin/kibi-mcp --diagnostic-mode`, so the flag appears intended to be supported.
- `packages/mcp/bin/kibi-mcp` does not parse CLI arguments; it just starts the server.
- Debug behavior in the MCP server is gated by `KIBI_MCP_DEBUG`, not by `--diagnostic-mode`.
- `packages/core/src/kb.pl` attaches `audit.log`, not `usage.log`.
- The audit persistence looks write-oriented (`upsert`, `delete`, `upsert_rel`), so read/query activity is not persisted there.
This makes `--diagnostic-mode` effectively silent for MCP query diagnostics, and it is unclear whether:
- `usage.log` was intended but never implemented,
- `audit.log` replaced it and docs/config are stale, or
- diagnostic mode is supposed to map to `KIBI_MCP_DEBUG` but currently does not.
Environment
- OpenCode `1.2.27`
- `kibi-cli` `0.2.7`
- `kibi-mcp` `0.3.2`
- Linux
- branch: `develop`
Additional observation
`packages/mcp/src/server.ts` reports MCP server version `0.2.1` even though the installed `kibi-mcp` package version is `0.3.2`, which may indicate some packaging/version drift.