kibi-mcp 0.5.2 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,6 +88,11 @@ export function deriveDiagnosticFields(toolName, args, telemetry, result) {
88
88
  const fields = {
89
89
  telemetry_status: telemetry ? "provided" : "missing",
90
90
  };
91
+ if (telemetry) {
92
+ fields.telemetry_is_autonomous = telemetry.is_autonomous ?? null;
93
+ fields.telemetry_confidence_score = telemetry.confidence_score ?? null;
94
+ fields.telemetry_attempt_number = telemetry.attempt_number ?? null;
95
+ }
91
96
  const structuredContent = result && typeof result === "object" && "structuredContent" in result
92
97
  ? result
93
98
  .structuredContent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kibi-mcp",
3
- "version": "0.5.2",
3
+ "version": "0.6.1",
4
4
  "dependencies": {
5
5
  "@modelcontextprotocol/sdk": "^1.26.0",
6
6
  "ajv": "^8.18.0",
@@ -9,8 +9,8 @@
9
9
  "fast-glob": "^3.2.12",
10
10
  "gray-matter": "^4.0.3",
11
11
  "js-yaml": "^4.1.0",
12
- "kibi-cli": "^0.4.3",
13
- "kibi-core": "^0.3.0",
12
+ "kibi-cli": "^0.5.1",
13
+ "kibi-core": "^0.4.1",
14
14
  "mcpcat": "^0.1.12",
15
15
  "ts-morph": "^23.0.0",
16
16
  "zod": "^4.3.6"