@kryptosai/mcp-observatory 0.26.1 → 0.28.0

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.
Files changed (152) hide show
  1. package/COMMERCIAL.md +13 -9
  2. package/CONTRIBUTORS.md +39 -0
  3. package/PRIVACY.md +5 -5
  4. package/README.md +83 -30
  5. package/TERMS.md +1 -1
  6. package/dist/src/adapters/http.js +1 -5
  7. package/dist/src/adapters/http.js.map +1 -1
  8. package/dist/src/cassette.js +3 -2
  9. package/dist/src/cassette.js.map +1 -1
  10. package/dist/src/checks/attack-sim.d.ts +18 -0
  11. package/dist/src/checks/attack-sim.js +304 -0
  12. package/dist/src/checks/attack-sim.js.map +1 -0
  13. package/dist/src/checks/schema-quality.js +1 -0
  14. package/dist/src/checks/schema-quality.js.map +1 -1
  15. package/dist/src/ci-issue.js +4 -3
  16. package/dist/src/ci-issue.js.map +1 -1
  17. package/dist/src/cli.js +17 -3
  18. package/dist/src/cli.js.map +1 -1
  19. package/dist/src/commands/attack-sim.d.ts +2 -0
  20. package/dist/src/commands/attack-sim.js +168 -0
  21. package/dist/src/commands/attack-sim.js.map +1 -0
  22. package/dist/src/commands/helpers.d.ts +3 -1
  23. package/dist/src/commands/helpers.js +2 -2
  24. package/dist/src/commands/helpers.js.map +1 -1
  25. package/dist/src/commands/init-ci.d.ts +3 -0
  26. package/dist/src/commands/init-ci.js +57 -11
  27. package/dist/src/commands/init-ci.js.map +1 -1
  28. package/dist/src/commands/legacy.js +24 -3
  29. package/dist/src/commands/legacy.js.map +1 -1
  30. package/dist/src/commands/scan.js +37 -10
  31. package/dist/src/commands/scan.js.map +1 -1
  32. package/dist/src/commands/serve.js +9 -1
  33. package/dist/src/commands/serve.js.map +1 -1
  34. package/dist/src/commands/setup-ci-conversion.d.ts +26 -0
  35. package/dist/src/commands/setup-ci-conversion.js +120 -0
  36. package/dist/src/commands/setup-ci-conversion.js.map +1 -0
  37. package/dist/src/commands/telemetry.js +20 -14
  38. package/dist/src/commands/telemetry.js.map +1 -1
  39. package/dist/src/commands/test.js +63 -4
  40. package/dist/src/commands/test.js.map +1 -1
  41. package/dist/src/findings.d.ts +20 -0
  42. package/dist/src/findings.js +272 -0
  43. package/dist/src/findings.js.map +1 -0
  44. package/dist/src/history.js +3 -2
  45. package/dist/src/history.js.map +1 -1
  46. package/dist/src/index.d.ts +3 -0
  47. package/dist/src/index.js +3 -0
  48. package/dist/src/index.js.map +1 -1
  49. package/dist/src/integrations/smithery.js +5 -1
  50. package/dist/src/integrations/smithery.js.map +1 -1
  51. package/dist/src/reporters/attack-sim.d.ts +2 -0
  52. package/dist/src/reporters/attack-sim.js +84 -0
  53. package/dist/src/reporters/attack-sim.js.map +1 -0
  54. package/dist/src/reporters/pr-comment.js +20 -6
  55. package/dist/src/reporters/pr-comment.js.map +1 -1
  56. package/dist/src/reporters/sarif.d.ts +4 -1
  57. package/dist/src/reporters/sarif.js +58 -37
  58. package/dist/src/reporters/sarif.js.map +1 -1
  59. package/dist/src/runner.d.ts +3 -0
  60. package/dist/src/runner.js +5 -0
  61. package/dist/src/runner.js.map +1 -1
  62. package/dist/src/score.js +1 -1
  63. package/dist/src/score.js.map +1 -1
  64. package/dist/src/storage.d.ts +1 -0
  65. package/dist/src/storage.js +28 -2
  66. package/dist/src/storage.js.map +1 -1
  67. package/dist/src/telemetry.d.ts +6 -0
  68. package/dist/src/telemetry.js +17 -1
  69. package/dist/src/telemetry.js.map +1 -1
  70. package/dist/src/types.d.ts +1 -1
  71. package/dist/src/utils/files.d.ts +1 -0
  72. package/dist/src/utils/files.js +21 -0
  73. package/dist/src/utils/files.js.map +1 -0
  74. package/dist/src/utils/ids.js +18 -5
  75. package/dist/src/utils/ids.js.map +1 -1
  76. package/dist/src/utils/url.d.ts +2 -0
  77. package/dist/src/utils/url.js +15 -0
  78. package/dist/src/utils/url.js.map +1 -0
  79. package/dist/src/validate.js +1 -1
  80. package/dist/src/validate.js.map +1 -1
  81. package/docs/agent-ecosystem-promotion-plan.md +244 -0
  82. package/docs/agent-runtime-quickstart.md +98 -0
  83. package/docs/agent-tasks.md +95 -0
  84. package/docs/automatic-ci-integration.md +33 -0
  85. package/docs/campaign-attribution.md +58 -0
  86. package/docs/code-scanning-demo.md +57 -0
  87. package/docs/code-scanning-launch-outreach.md +55 -0
  88. package/docs/contributor-proof-cards/README.md +33 -0
  89. package/docs/contributor-recognition.md +92 -0
  90. package/docs/feishu-lark-mcp.md +3 -3
  91. package/docs/github-code-scanning-for-mcp.md +94 -0
  92. package/docs/launch.md +64 -0
  93. package/docs/mcp-attack-simulator.md +57 -0
  94. package/docs/mcp-server-safety-index.md +18 -12
  95. package/docs/metrics-dashboard.md +2 -2
  96. package/docs/openclaw-agent-template/SOUL.md +156 -0
  97. package/docs/proof.md +7 -4
  98. package/docs/receipt-graph.md +54 -0
  99. package/docs/safety-index/artifacts/antv-chart-server.json +21 -21
  100. package/docs/safety-index/artifacts/antv-chart-server.md +10 -10
  101. package/docs/safety-index/artifacts/browsermcp-server.json +17 -17
  102. package/docs/safety-index/artifacts/browsermcp-server.md +10 -10
  103. package/docs/safety-index/artifacts/context7-server.json +17 -17
  104. package/docs/safety-index/artifacts/context7-server.md +10 -10
  105. package/docs/safety-index/artifacts/cyanheads-git-mcp-server.json +2014 -0
  106. package/docs/safety-index/artifacts/cyanheads-git-mcp-server.md +163 -0
  107. package/docs/safety-index/artifacts/everything-server.json +131 -56
  108. package/docs/safety-index/artifacts/everything-server.md +24 -24
  109. package/docs/safety-index/artifacts/executeautomation-playwright-server.json +26 -18
  110. package/docs/safety-index/artifacts/executeautomation-playwright-server.md +10 -10
  111. package/docs/safety-index/artifacts/filesystem-server.json +128 -20
  112. package/docs/safety-index/artifacts/filesystem-server.md +10 -10
  113. package/docs/safety-index/artifacts/kubernetes-server.attack.json +1559 -0
  114. package/docs/safety-index/artifacts/kubernetes-server.attack.md +43 -0
  115. package/docs/safety-index/artifacts/kubernetes-server.attack.sarif +2857 -0
  116. package/docs/safety-index/artifacts/kubernetes-server.json +1348 -0
  117. package/docs/safety-index/artifacts/kubernetes-server.md +150 -0
  118. package/docs/safety-index/artifacts/memory-server.json +75 -32
  119. package/docs/safety-index/artifacts/memory-server.md +35 -28
  120. package/docs/safety-index/artifacts/opentofu-server.json +25 -17
  121. package/docs/safety-index/artifacts/opentofu-server.md +11 -11
  122. package/docs/safety-index/artifacts/playwright-mcp-server.json +56 -20
  123. package/docs/safety-index/artifacts/playwright-mcp-server.md +12 -12
  124. package/docs/safety-index/artifacts/promptopia-server.json +28 -20
  125. package/docs/safety-index/artifacts/promptopia-server.md +11 -11
  126. package/docs/safety-index/artifacts/puppeteer-server.json +42 -30
  127. package/docs/safety-index/artifacts/puppeteer-server.md +28 -28
  128. package/docs/safety-index/artifacts/ref-tools-server.json +17 -17
  129. package/docs/safety-index/artifacts/ref-tools-server.md +9 -9
  130. package/docs/safety-index/artifacts/sequential-thinking-server.json +20 -21
  131. package/docs/safety-index/artifacts/sequential-thinking-server.md +10 -10
  132. package/docs/safety-index/targets.json +90 -14
  133. package/docs/setup-ci-doctor.md +2 -0
  134. package/docs/target-contribution-guide.md +139 -0
  135. package/docs/target-gallery.md +49 -0
  136. package/docs/target-registry.md +120 -0
  137. package/docs/tool-call-receipts.md +116 -0
  138. package/package.json +52 -9
  139. package/schemas/run-artifact.schema.json +1 -0
  140. package/scripts/postinstall.mjs +123 -0
  141. package/docs/certification-campaign-template.md +0 -181
  142. package/docs/certification-distribution.md +0 -145
  143. package/docs/certification-pr-campaign.md +0 -68
  144. package/docs/clone-to-ci-campaign.md +0 -62
  145. package/docs/directory-listing-copy.md +0 -85
  146. package/docs/distribution-launch.md +0 -76
  147. package/docs/ecosystem-distribution-kit.md +0 -79
  148. package/docs/enterprise-outreach-playbook.md +0 -83
  149. package/docs/paid-pilot-offer.md +0 -74
  150. package/docs/project-case-study.md +0 -140
  151. package/docs/public-post-drafts.md +0 -98
  152. package/docs/publish-readiness.md +0 -79
@@ -0,0 +1,54 @@
1
+ # MCP Receipt Graph
2
+
3
+ Agent trust should be a receipt graph, not a follower graph.
4
+
5
+ A social graph says who is popular. A receipt graph says what was verified, what could not happen during the run, which artifact can be rerun, and what changed since the last trusted state.
6
+
7
+ Use this page as the first public map from MCP servers to reproducible evidence. It is intentionally small: a receipt graph should start with high-quality, rerunnable receipts before it tries to become a giant directory.
8
+
9
+ ## Receipt Graph Fields
10
+
11
+ | Field | Meaning |
12
+ | --- | --- |
13
+ | Server | Public MCP server, package, or repo. |
14
+ | Receipt | JSON/Markdown evidence generated by MCP Observatory. |
15
+ | Attack evidence | Safe `attack-sim` command, report, or SARIF. |
16
+ | CI/SARIF path | Whether the next step is a maintainer CI gate, Code Scanning, or both. |
17
+ | Capability envelope | What the run was allowed to access. |
18
+ | Last verified | Timestamp of the latest public Safety Index refresh. |
19
+
20
+ ## Seed Graph
21
+
22
+ | Server | Receipt | Attack evidence | CI/SARIF path | Capability envelope | Last verified |
23
+ | --- | --- | --- | --- | --- | --- |
24
+ | [Official everything server](https://github.com/modelcontextprotocol/servers) | [JSON](./safety-index/artifacts/everything-server.json) / [report](./safety-index/artifacts/everything-server.md) | `attack-sim npx -y @modelcontextprotocol/server-everything` | Public reference baseline; CI-ready. | Public package, no secrets, no production data. | 2026-07-06 |
25
+ | [Official sequential thinking server](https://github.com/modelcontextprotocol/servers) | [JSON](./safety-index/artifacts/sequential-thinking-server.json) / [report](./safety-index/artifacts/sequential-thinking-server.md) | `attack-sim npx -y @modelcontextprotocol/server-sequential-thinking` | Public reference baseline; CI-ready. | Public package, no secrets, no production data. | 2026-07-06 |
26
+ | [Official memory server](https://github.com/modelcontextprotocol/servers) | [JSON](./safety-index/artifacts/memory-server.json) / [report](./safety-index/artifacts/memory-server.md) | `attack-sim npx -y @modelcontextprotocol/server-memory` | Public reference baseline; CI-ready. | Public package, no secrets, no production data. | 2026-07-06 |
27
+ | [Context7](https://github.com/upstash/context7) | [JSON](./safety-index/artifacts/context7-server.json) / [report](./safety-index/artifacts/context7-server.md) | `attack-sim npx -y @upstash/context7-mcp` | Maintainer CI conversation candidate. | Public package, no secrets, no production data. | 2026-07-06 |
28
+ | [BrowserMCP](https://github.com/BrowserMCP/mcp) | [JSON](./safety-index/artifacts/browsermcp-server.json) / [report](./safety-index/artifacts/browsermcp-server.md) | `attack-sim npx -y @browsermcp/mcp` | Browser boundary candidate for CI/SARIF. | Public package, no secrets, no production credentials. | 2026-07-06 |
29
+ | [Microsoft Playwright MCP](https://github.com/microsoft/playwright-mcp) | [JSON](./safety-index/artifacts/playwright-mcp-server.json) / [report](./safety-index/artifacts/playwright-mcp-server.md) | `attack-sim npx -y @playwright/mcp` | High-capability browser boundary; Code Scanning useful. | Public package, no secrets, no production credentials. | 2026-07-06 |
30
+ | [Puppeteer MCP server](https://www.npmjs.com/package/puppeteer-mcp-server) | [JSON](./safety-index/artifacts/puppeteer-server.json) / [report](./safety-index/artifacts/puppeteer-server.md) | `attack-sim npx -y puppeteer-mcp-server` | Browser boundary candidate for review before production. | Public package, no secrets, no production credentials. | 2026-07-06 |
31
+ | [OpenTofu MCP server](https://github.com/opentofu/opentofu-mcp-server) | [JSON](./safety-index/artifacts/opentofu-server.json) / [report](./safety-index/artifacts/opentofu-server.md) | `attack-sim npx -y @opentofu/opentofu-mcp-server` | Infrastructure tool surface; CI/SARIF recommended. | Public package, no secrets, no production infrastructure. | 2026-07-06 |
32
+ | [Flux159 Kubernetes MCP server](https://github.com/Flux159/mcp-server-kubernetes) | [JSON](./safety-index/artifacts/kubernetes-server.json) / [report](./safety-index/artifacts/kubernetes-server.md) | [attack-sim](./safety-index/artifacts/kubernetes-server.attack.md) / [SARIF](./safety-index/artifacts/kubernetes-server.attack.sarif) | Kubernetes command and cluster mutation boundary; CI/SARIF recommended before agent dependency. | Public package, no secrets, no kubeconfig, no cluster tool invocation. | 2026-07-06 |
33
+
34
+ ## How To Add A Node
35
+
36
+ 1. Open a [Drop an MCP server, get a receipt request](https://github.com/KryptosAI/mcp-observatory/issues/new?template=tool-call-receipt-request.yml).
37
+ 2. Provide a public MCP server and safe startup command.
38
+ 3. Run:
39
+
40
+ ```bash
41
+ npx @kryptosai/mcp-observatory test <safe startup command> --json run-artifact.json --markdown run-report.md
42
+ npx @kryptosai/mcp-observatory attack-sim <safe startup command> --json attack-artifact.json --output attack-report.md --sarif attack-results.sarif
43
+ npx @kryptosai/mcp-observatory setup-ci --all --command "<safe startup command>" --sarif
44
+ ```
45
+
46
+ 4. Attach sanitized artifacts or open a focused PR.
47
+
48
+ ## Agent-Native Ask
49
+
50
+ ```text
51
+ Name one MCP server your agent depends on. I will help turn it into a reproducible receipt: safe startup command, run artifact, attack-sim evidence, SARIF, and a CI gate maintainers can review.
52
+ ```
53
+
54
+ For the public intake loop, see [Drop an MCP server, get a receipt](./drop-server-get-receipt.md) or comment on [the live GitHub thread](https://github.com/KryptosAI/mcp-observatory/issues/146).
@@ -2,9 +2,9 @@
2
2
  "artifactType": "run",
3
3
  "schemaVersion": "1.0.0",
4
4
  "gate": "pass",
5
- "runId": "run_2026-06-24T020741323Z_41a77db3",
6
- "createdAt": "2026-06-24T02:07:41.323Z",
7
- "toolVersion": "0.24.0",
5
+ "runId": "run_2026-07-06T014704792Z_4aa8d9c4",
6
+ "createdAt": "2026-07-06T01:47:04.792Z",
7
+ "toolVersion": "0.26.1",
8
8
  "target": {
9
9
  "targetId": "antv-chart-server",
10
10
  "adapter": "local-process",
@@ -25,8 +25,8 @@
25
25
  "serverVersion": "0.8.x"
26
26
  },
27
27
  "environment": {
28
- "platform": "darwin 25.5.0",
29
- "nodeVersion": "v22.22.1"
28
+ "platform": "darwin 24.0.0",
29
+ "nodeVersion": "v25.8.1"
30
30
  },
31
31
  "summary": {
32
32
  "total": 7,
@@ -43,7 +43,7 @@
43
43
  "id": "tools",
44
44
  "capability": "tools",
45
45
  "status": "pass",
46
- "durationMs": 2.671415999997407,
46
+ "durationMs": 1.9061670000010054,
47
47
  "message": "Advertised capability responded with the minimal expected shape (27 items).",
48
48
  "evidence": [
49
49
  {
@@ -82,9 +82,9 @@
82
82
  "generate_spreadsheet"
83
83
  ],
84
84
  "diagnostics": [
85
- "[MCP-Server-Chart] 2026-06-24T02:07:44.865Z ℹ️ setting up tool handlers...",
86
- "[MCP-Server-Chart] 2026-06-24T02:07:44.867Z ℹ️ tool handlers set up",
87
- "[MCP-Server-Chart] 2026-06-24T02:07:44.868Z ✅ Stdio MCP Server started"
85
+ "[MCP-Server-Chart] 2026-07-06T01:47:05.616Z ℹ️ setting up tool handlers...",
86
+ "[MCP-Server-Chart] 2026-07-06T01:47:05.617Z ℹ️ tool handlers set up",
87
+ "[MCP-Server-Chart] 2026-07-06T01:47:05.618Z ✅ Stdio MCP Server started"
88
88
  ],
89
89
  "schemas": {
90
90
  "generate_area_chart": {
@@ -2602,7 +2602,7 @@
2602
2602
  "id": "prompts",
2603
2603
  "capability": "prompts",
2604
2604
  "status": "unsupported",
2605
- "durationMs": 0.0014999999984866008,
2605
+ "durationMs": 0.0009579999987181509,
2606
2606
  "message": "Prompts are not advertised by the target.",
2607
2607
  "evidence": [
2608
2608
  {
@@ -2618,7 +2618,7 @@
2618
2618
  "id": "resources",
2619
2619
  "capability": "resources",
2620
2620
  "status": "unsupported",
2621
- "durationMs": 0.002874999998311978,
2621
+ "durationMs": 0.002207999999882304,
2622
2622
  "message": "Resources are not advertised by the target.",
2623
2623
  "evidence": [
2624
2624
  {
@@ -2634,7 +2634,7 @@
2634
2634
  "id": "security-lite",
2635
2635
  "capability": "security-lite",
2636
2636
  "status": "pass",
2637
- "durationMs": 0.12066699999923003,
2637
+ "durationMs": 0.08966599999985192,
2638
2638
  "message": "No security issues detected (lightweight scan).",
2639
2639
  "evidence": [
2640
2640
  {
@@ -2650,7 +2650,7 @@
2650
2650
  "id": "conformance",
2651
2651
  "capability": "conformance",
2652
2652
  "status": "pass",
2653
- "durationMs": 2.8167500000017753,
2653
+ "durationMs": 1.4091669999997976,
2654
2654
  "message": "All 7 conformance checks passed.",
2655
2655
  "evidence": [
2656
2656
  {
@@ -2676,7 +2676,7 @@
2676
2676
  "id": "schema-quality",
2677
2677
  "capability": "schema-quality",
2678
2678
  "status": "pass",
2679
- "durationMs": 1.4510000000009313,
2679
+ "durationMs": 1.022541000000274,
2680
2680
  "message": "All 27 item(s) have good schema quality.",
2681
2681
  "evidence": [
2682
2682
  {
@@ -2693,7 +2693,7 @@
2693
2693
  "id": "security",
2694
2694
  "capability": "security",
2695
2695
  "status": "pass",
2696
- "durationMs": 1.5284999999967113,
2696
+ "durationMs": 0.9119160000009288,
2697
2697
  "message": "No security issues detected.",
2698
2698
  "evidence": [
2699
2699
  {
@@ -2750,16 +2750,16 @@
2750
2750
  "weight": 0.1,
2751
2751
  "score": 100,
2752
2752
  "details": [
2753
- "Connect: 3548ms",
2754
- "p95 latency: 3ms (3 operations)"
2753
+ "Connect: 830ms",
2754
+ "p95 latency: 2ms (3 operations)"
2755
2755
  ]
2756
2756
  }
2757
2757
  ]
2758
2758
  },
2759
2759
  "performanceMetrics": {
2760
- "connectMs": 3548.425417000002,
2761
- "toolsListMs": 2.671415999997407,
2762
- "promptsListMs": 0.0014999999984866008,
2763
- "resourcesListMs": 0.002874999998311978
2760
+ "connectMs": 830.341375,
2761
+ "toolsListMs": 1.9061670000010054,
2762
+ "promptsListMs": 0.0009579999987181509,
2763
+ "resourcesListMs": 0.002207999999882304
2764
2764
  }
2765
2765
  }
@@ -1,6 +1,6 @@
1
1
  # MCP Observatory Run Report
2
2
 
3
- Generated at 2026-06-24T02:07:41.323Z
3
+ Generated at 2026-07-06T01:47:04.792Z
4
4
 
5
5
  ## Target and Environment Metadata
6
6
 
@@ -8,8 +8,8 @@ Generated at 2026-06-24T02:07:41.323Z
8
8
  - Adapter: `local-process`
9
9
  - Command: `npx -y @antv/mcp-server-chart`
10
10
  - Server: `mcp-server-chart 0.8.x`
11
- - Platform: `darwin 25.5.0`
12
- - Node: `v22.22.1`
11
+ - Platform: `darwin 24.0.0`
12
+ - Node: `v25.8.1`
13
13
 
14
14
  ## Executive Summary
15
15
 
@@ -47,11 +47,11 @@ _Use the `diff` command against another run artifact to classify regressions and
47
47
 
48
48
  | Focus | Check | Status | Duration (ms) | Message |
49
49
  | --- | --- | --- | --- | --- |
50
- | healthy | conformance | pass | 2.82 | All 7 conformance checks passed. |
51
- | healthy | schema-quality | pass | 1.45 | All 27 item(s) have good schema quality. |
52
- | healthy | security | pass | 1.53 | No security issues detected. |
53
- | healthy | security-lite | pass | 0.12 | No security issues detected (lightweight scan). |
54
- | healthy | tools | pass | 2.67 | Advertised capability responded with the minimal expected shape (27 items). |
50
+ | healthy | conformance | pass | 1.41 | All 7 conformance checks passed. |
51
+ | healthy | schema-quality | pass | 1.02 | All 27 item(s) have good schema quality. |
52
+ | healthy | security | pass | 0.91 | No security issues detected. |
53
+ | healthy | security-lite | pass | 0.09 | No security issues detected (lightweight scan). |
54
+ | healthy | tools | pass | 1.91 | Advertised capability responded with the minimal expected shape (27 items). |
55
55
  | confirm intent | prompts | unsupported | 0.00 | Prompts are not advertised by the target. |
56
56
  | confirm intent | resources | unsupported | 0.00 | Resources are not advertised by the target. |
57
57
 
@@ -115,7 +115,7 @@ Summary: Advertised capability responded with the minimal expected shape (27 ite
115
115
  - Minimal shape present: `true`
116
116
  - Item count: `27`
117
117
  - Identifiers: generate_area_chart, generate_bar_chart, generate_boxplot_chart, generate_column_chart, generate_district_map (+22 more)
118
- - Diagnostics: [MCP-Server-Chart] 2026-06-24T02:07:44.865Z ℹ️ setting up tool handlers..., [MCP-Server-Chart] 2026-06-24T02:07:44.867Z ℹ️ tool handlers set up, [MCP-Server-Chart] 2026-06-24T02:07:44.868Z ✅ Stdio MCP Server started
118
+ - Diagnostics: [MCP-Server-Chart] 2026-07-06T01:47:05.616Z ℹ️ setting up tool handlers..., [MCP-Server-Chart] 2026-07-06T01:47:05.617Z ℹ️ tool handlers set up, [MCP-Server-Chart] 2026-07-06T01:47:05.618Z ✅ Stdio MCP Server started
119
119
 
120
120
  ### prompts — unsupported
121
121
 
@@ -152,5 +152,5 @@ npm run cli -- report --run <path-to-run-artifact.json> --format markdown
152
152
 
153
153
  - Artifact type: `run`
154
154
  - Schema version: `1.0.0`
155
- - Run ID: `run_2026-06-24T020741323Z_41a77db3`
155
+ - Run ID: `run_2026-07-06T014704792Z_4aa8d9c4`
156
156
  - Gate: `pass`
@@ -2,9 +2,9 @@
2
2
  "artifactType": "run",
3
3
  "schemaVersion": "1.0.0",
4
4
  "gate": "pass",
5
- "runId": "run_2026-06-24T020731112Z_2e7853f8",
6
- "createdAt": "2026-06-24T02:07:31.112Z",
7
- "toolVersion": "0.24.0",
5
+ "runId": "run_2026-07-06T014702689Z_66630a02",
6
+ "createdAt": "2026-07-06T01:47:02.689Z",
7
+ "toolVersion": "0.26.1",
8
8
  "target": {
9
9
  "targetId": "browsermcp-server",
10
10
  "adapter": "local-process",
@@ -25,8 +25,8 @@
25
25
  "serverVersion": "0.1.3"
26
26
  },
27
27
  "environment": {
28
- "platform": "darwin 25.5.0",
29
- "nodeVersion": "v22.22.1"
28
+ "platform": "darwin 24.0.0",
29
+ "nodeVersion": "v25.8.1"
30
30
  },
31
31
  "summary": {
32
32
  "total": 7,
@@ -43,7 +43,7 @@
43
43
  "id": "tools",
44
44
  "capability": "tools",
45
45
  "status": "pass",
46
- "durationMs": 1.2612079999998969,
46
+ "durationMs": 0.9707080000007409,
47
47
  "message": "Advertised capability responded with the minimal expected shape (12 items).",
48
48
  "evidence": [
49
49
  {
@@ -242,7 +242,7 @@
242
242
  "id": "prompts",
243
243
  "capability": "prompts",
244
244
  "status": "unsupported",
245
- "durationMs": 0.0015829999993002275,
245
+ "durationMs": 0.0007919999989098869,
246
246
  "message": "Prompts are not advertised by the target.",
247
247
  "evidence": [
248
248
  {
@@ -258,7 +258,7 @@
258
258
  "id": "resources",
259
259
  "capability": "resources",
260
260
  "status": "pass",
261
- "durationMs": 0.675042000000758,
261
+ "durationMs": 0.6247500000008586,
262
262
  "message": "Advertised capability responded with the minimal expected shape, but one optional resource endpoint appears unsupported.",
263
263
  "evidence": [
264
264
  {
@@ -285,7 +285,7 @@
285
285
  "id": "security-lite",
286
286
  "capability": "security-lite",
287
287
  "status": "pass",
288
- "durationMs": 0.03508300000066811,
288
+ "durationMs": 0.02770799999962037,
289
289
  "message": "No security issues detected (lightweight scan).",
290
290
  "evidence": [
291
291
  {
@@ -301,7 +301,7 @@
301
301
  "id": "conformance",
302
302
  "capability": "conformance",
303
303
  "status": "pass",
304
- "durationMs": 2.116834000000381,
304
+ "durationMs": 1.5951249999998254,
305
305
  "message": "All 7 conformance checks passed.",
306
306
  "evidence": [
307
307
  {
@@ -327,7 +327,7 @@
327
327
  "id": "schema-quality",
328
328
  "capability": "schema-quality",
329
329
  "status": "pass",
330
- "durationMs": 0.5424579999998969,
330
+ "durationMs": 0.48875000000043656,
331
331
  "message": "All 12 item(s) have good schema quality.",
332
332
  "evidence": [
333
333
  {
@@ -344,7 +344,7 @@
344
344
  "id": "security",
345
345
  "capability": "security",
346
346
  "status": "pass",
347
- "durationMs": 0.24799999999959255,
347
+ "durationMs": 0.25716600000123435,
348
348
  "message": "No security issues detected.",
349
349
  "evidence": [
350
350
  {
@@ -401,16 +401,16 @@
401
401
  "weight": 0.1,
402
402
  "score": 100,
403
403
  "details": [
404
- "Connect: 903ms",
404
+ "Connect: 705ms",
405
405
  "p95 latency: 1ms (3 operations)"
406
406
  ]
407
407
  }
408
408
  ]
409
409
  },
410
410
  "performanceMetrics": {
411
- "connectMs": 902.8017089999994,
412
- "toolsListMs": 1.2612079999998969,
413
- "promptsListMs": 0.0015829999993002275,
414
- "resourcesListMs": 0.675042000000758
411
+ "connectMs": 705.3232910000006,
412
+ "toolsListMs": 0.9707080000007409,
413
+ "promptsListMs": 0.0007919999989098869,
414
+ "resourcesListMs": 0.6247500000008586
415
415
  }
416
416
  }
@@ -1,6 +1,6 @@
1
1
  # MCP Observatory Run Report
2
2
 
3
- Generated at 2026-06-24T02:07:31.112Z
3
+ Generated at 2026-07-06T01:47:02.689Z
4
4
 
5
5
  ## Target and Environment Metadata
6
6
 
@@ -8,8 +8,8 @@ Generated at 2026-06-24T02:07:31.112Z
8
8
  - Adapter: `local-process`
9
9
  - Command: `npx -y @browsermcp/mcp`
10
10
  - Server: `Browser MCP 0.1.3`
11
- - Platform: `darwin 25.5.0`
12
- - Node: `v22.22.1`
11
+ - Platform: `darwin 24.0.0`
12
+ - Node: `v25.8.1`
13
13
 
14
14
  ## Executive Summary
15
15
 
@@ -47,12 +47,12 @@ _Use the `diff` command against another run artifact to classify regressions and
47
47
 
48
48
  | Focus | Check | Status | Duration (ms) | Message |
49
49
  | --- | --- | --- | --- | --- |
50
- | healthy | conformance | pass | 2.12 | All 7 conformance checks passed. |
51
- | healthy | resources | pass | 0.68 | Advertised capability responded with the minimal expected shape, but one optional resource endpoint appears unsupported. |
52
- | healthy | schema-quality | pass | 0.54 | All 12 item(s) have good schema quality. |
53
- | healthy | security | pass | 0.25 | No security issues detected. |
54
- | healthy | security-lite | pass | 0.04 | No security issues detected (lightweight scan). |
55
- | healthy | tools | pass | 1.26 | Advertised capability responded with the minimal expected shape (12 items). |
50
+ | healthy | conformance | pass | 1.60 | All 7 conformance checks passed. |
51
+ | healthy | resources | pass | 0.62 | Advertised capability responded with the minimal expected shape, but one optional resource endpoint appears unsupported. |
52
+ | healthy | schema-quality | pass | 0.49 | All 12 item(s) have good schema quality. |
53
+ | healthy | security | pass | 0.26 | No security issues detected. |
54
+ | healthy | security-lite | pass | 0.03 | No security issues detected (lightweight scan). |
55
+ | healthy | tools | pass | 0.97 | Advertised capability responded with the minimal expected shape (12 items). |
56
56
  | confirm intent | prompts | unsupported | 0.00 | Prompts are not advertised by the target. |
57
57
 
58
58
  ## Evidence Snippets
@@ -159,5 +159,5 @@ npm run cli -- report --run <path-to-run-artifact.json> --format markdown
159
159
 
160
160
  - Artifact type: `run`
161
161
  - Schema version: `1.0.0`
162
- - Run ID: `run_2026-06-24T020731112Z_2e7853f8`
162
+ - Run ID: `run_2026-07-06T014702689Z_66630a02`
163
163
  - Gate: `pass`
@@ -2,9 +2,9 @@
2
2
  "artifactType": "run",
3
3
  "schemaVersion": "1.0.0",
4
4
  "gate": "pass",
5
- "runId": "run_2026-06-24T020724758Z_bed6c073",
6
- "createdAt": "2026-06-24T02:07:24.758Z",
7
- "toolVersion": "0.24.0",
5
+ "runId": "run_2026-07-06T014654306Z_160413b5",
6
+ "createdAt": "2026-07-06T01:46:54.306Z",
7
+ "toolVersion": "0.26.1",
8
8
  "target": {
9
9
  "targetId": "context7-server",
10
10
  "adapter": "local-process",
@@ -25,8 +25,8 @@
25
25
  "serverVersion": "3.2.2"
26
26
  },
27
27
  "environment": {
28
- "platform": "darwin 25.5.0",
29
- "nodeVersion": "v22.22.1"
28
+ "platform": "darwin 24.0.0",
29
+ "nodeVersion": "v25.8.1"
30
30
  },
31
31
  "summary": {
32
32
  "total": 7,
@@ -43,7 +43,7 @@
43
43
  "id": "tools",
44
44
  "capability": "tools",
45
45
  "status": "pass",
46
- "durationMs": 1.5927080000001297,
46
+ "durationMs": 1.7208330000003116,
47
47
  "message": "Advertised capability responded with the minimal expected shape (2 items).",
48
48
  "evidence": [
49
49
  {
@@ -104,7 +104,7 @@
104
104
  "id": "prompts",
105
105
  "capability": "prompts",
106
106
  "status": "pass",
107
- "durationMs": 0.2917909999996482,
107
+ "durationMs": 0.2972090000002936,
108
108
  "message": "Advertised capability responded with the minimal expected shape (0 items).",
109
109
  "evidence": [
110
110
  {
@@ -124,7 +124,7 @@
124
124
  "id": "resources",
125
125
  "capability": "resources",
126
126
  "status": "pass",
127
- "durationMs": 0.5327499999993961,
127
+ "durationMs": 0.4392909999996846,
128
128
  "message": "Advertised capability responded with the minimal expected shape (0 items).",
129
129
  "evidence": [
130
130
  {
@@ -155,7 +155,7 @@
155
155
  "id": "security-lite",
156
156
  "capability": "security-lite",
157
157
  "status": "pass",
158
- "durationMs": 0.024166000000150234,
158
+ "durationMs": 0.023624999999810825,
159
159
  "message": "No security issues detected (lightweight scan).",
160
160
  "evidence": [
161
161
  {
@@ -171,7 +171,7 @@
171
171
  "id": "conformance",
172
172
  "capability": "conformance",
173
173
  "status": "pass",
174
- "durationMs": 1.0839169999999285,
174
+ "durationMs": 0.7742079999998168,
175
175
  "message": "All 7 conformance checks passed.",
176
176
  "evidence": [
177
177
  {
@@ -197,7 +197,7 @@
197
197
  "id": "schema-quality",
198
198
  "capability": "schema-quality",
199
199
  "status": "pass",
200
- "durationMs": 0.6274169999996957,
200
+ "durationMs": 0.6652500000000146,
201
201
  "message": "All 2 item(s) have good schema quality.",
202
202
  "evidence": [
203
203
  {
@@ -214,7 +214,7 @@
214
214
  "id": "security",
215
215
  "capability": "security",
216
216
  "status": "pass",
217
- "durationMs": 0.2532499999997526,
217
+ "durationMs": 0.29783299999962765,
218
218
  "message": "No security issues detected.",
219
219
  "evidence": [
220
220
  {
@@ -271,16 +271,16 @@
271
271
  "weight": 0.1,
272
272
  "score": 100,
273
273
  "details": [
274
- "Connect: 928ms",
274
+ "Connect: 817ms",
275
275
  "p95 latency: 2ms (3 operations)"
276
276
  ]
277
277
  }
278
278
  ]
279
279
  },
280
280
  "performanceMetrics": {
281
- "connectMs": 927.7457919999997,
282
- "toolsListMs": 1.5927080000001297,
283
- "promptsListMs": 0.2917909999996482,
284
- "resourcesListMs": 0.5327499999993961
281
+ "connectMs": 817.0577499999995,
282
+ "toolsListMs": 1.7208330000003116,
283
+ "promptsListMs": 0.2972090000002936,
284
+ "resourcesListMs": 0.4392909999996846
285
285
  }
286
286
  }
@@ -1,6 +1,6 @@
1
1
  # MCP Observatory Run Report
2
2
 
3
- Generated at 2026-06-24T02:07:24.758Z
3
+ Generated at 2026-07-06T01:46:54.306Z
4
4
 
5
5
  ## Target and Environment Metadata
6
6
 
@@ -8,8 +8,8 @@ Generated at 2026-06-24T02:07:24.758Z
8
8
  - Adapter: `local-process`
9
9
  - Command: `npx -y @upstash/context7-mcp`
10
10
  - Server: `Context7 3.2.2`
11
- - Platform: `darwin 25.5.0`
12
- - Node: `v22.22.1`
11
+ - Platform: `darwin 24.0.0`
12
+ - Node: `v25.8.1`
13
13
 
14
14
  ## Executive Summary
15
15
 
@@ -47,13 +47,13 @@ _Use the `diff` command against another run artifact to classify regressions and
47
47
 
48
48
  | Focus | Check | Status | Duration (ms) | Message |
49
49
  | --- | --- | --- | --- | --- |
50
- | healthy | conformance | pass | 1.08 | All 7 conformance checks passed. |
51
- | healthy | prompts | pass | 0.29 | Advertised capability responded with the minimal expected shape (0 items). |
52
- | healthy | resources | pass | 0.53 | Advertised capability responded with the minimal expected shape (0 items). |
53
- | healthy | schema-quality | pass | 0.63 | All 2 item(s) have good schema quality. |
54
- | healthy | security | pass | 0.25 | No security issues detected. |
50
+ | healthy | conformance | pass | 0.77 | All 7 conformance checks passed. |
51
+ | healthy | prompts | pass | 0.30 | Advertised capability responded with the minimal expected shape (0 items). |
52
+ | healthy | resources | pass | 0.44 | Advertised capability responded with the minimal expected shape (0 items). |
53
+ | healthy | schema-quality | pass | 0.67 | All 2 item(s) have good schema quality. |
54
+ | healthy | security | pass | 0.30 | No security issues detected. |
55
55
  | healthy | security-lite | pass | 0.02 | No security issues detected (lightweight scan). |
56
- | healthy | tools | pass | 1.59 | Advertised capability responded with the minimal expected shape (2 items). |
56
+ | healthy | tools | pass | 1.72 | Advertised capability responded with the minimal expected shape (2 items). |
57
57
 
58
58
  ## Evidence Snippets
59
59
 
@@ -159,5 +159,5 @@ npm run cli -- report --run <path-to-run-artifact.json> --format markdown
159
159
 
160
160
  - Artifact type: `run`
161
161
  - Schema version: `1.0.0`
162
- - Run ID: `run_2026-06-24T020724758Z_bed6c073`
162
+ - Run ID: `run_2026-07-06T014654306Z_160413b5`
163
163
  - Gate: `pass`