@kryptosai/mcp-observatory 1.28.1 → 1.28.3
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.
- package/CONTRIBUTORS.md +4 -1
- package/README.md +109 -14
- package/README.zh-CN.md +654 -0
- package/dist/src/adapters/http.js +13 -4
- package/dist/src/adapters/http.js.map +1 -1
- package/dist/src/checks/runtime-profile.d.ts +5 -0
- package/dist/src/checks/runtime-profile.js +214 -0
- package/dist/src/checks/runtime-profile.js.map +1 -0
- package/dist/src/checks/security-rules.js +18 -0
- package/dist/src/checks/security-rules.js.map +1 -1
- package/dist/src/checks/security.js +33 -65
- package/dist/src/checks/security.js.map +1 -1
- package/dist/src/checks/skill-scan.d.ts +46 -0
- package/dist/src/checks/skill-scan.js +665 -0
- package/dist/src/checks/skill-scan.js.map +1 -0
- package/dist/src/cli.js +15 -2
- package/dist/src/cli.js.map +1 -1
- package/dist/src/commands/enforce.d.ts +12 -0
- package/dist/src/commands/enforce.js +187 -0
- package/dist/src/commands/enforce.js.map +1 -0
- package/dist/src/commands/helpers.d.ts +2 -1
- package/dist/src/commands/helpers.js +9 -1
- package/dist/src/commands/helpers.js.map +1 -1
- package/dist/src/commands/legacy.js +3 -0
- package/dist/src/commands/legacy.js.map +1 -1
- package/dist/src/commands/risk-graph.d.ts +2 -0
- package/dist/src/commands/risk-graph.js +64 -0
- package/dist/src/commands/risk-graph.js.map +1 -0
- package/dist/src/commands/scan.js +36 -9
- package/dist/src/commands/scan.js.map +1 -1
- package/dist/src/commands/score.js.map +1 -1
- package/dist/src/commands/skill-scan.d.ts +6 -0
- package/dist/src/commands/skill-scan.js +62 -0
- package/dist/src/commands/skill-scan.js.map +1 -0
- package/dist/src/commands/test.js +13 -0
- package/dist/src/commands/test.js.map +1 -1
- package/dist/src/commands/watch.js +13 -8
- package/dist/src/commands/watch.js.map +1 -1
- package/dist/src/discovery.d.ts +15 -1
- package/dist/src/discovery.js +251 -35
- package/dist/src/discovery.js.map +1 -1
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.js +3 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/receipt.d.ts +4 -1
- package/dist/src/receipt.js +85 -0
- package/dist/src/receipt.js.map +1 -1
- package/dist/src/reporters/markdown.js +39 -0
- package/dist/src/reporters/markdown.js.map +1 -1
- package/dist/src/reporters/terminal.d.ts +2 -0
- package/dist/src/reporters/terminal.js +55 -2
- package/dist/src/reporters/terminal.js.map +1 -1
- package/dist/src/risk-graph.d.ts +64 -0
- package/dist/src/risk-graph.js +452 -0
- package/dist/src/risk-graph.js.map +1 -0
- package/dist/src/runner.js +6 -0
- package/dist/src/runner.js.map +1 -1
- package/dist/src/server.d.ts +1 -3
- package/dist/src/server.js +29 -645
- package/dist/src/server.js.map +1 -1
- package/dist/src/storage.js +13 -9
- package/dist/src/storage.js.map +1 -1
- package/dist/src/telemetry.d.ts +7 -0
- package/dist/src/telemetry.js.map +1 -1
- package/dist/src/tools/check-server.d.ts +27 -0
- package/dist/src/tools/check-server.js +46 -0
- package/dist/src/tools/check-server.js.map +1 -0
- package/dist/src/tools/ci-report.d.ts +21 -0
- package/dist/src/tools/ci-report.js +38 -0
- package/dist/src/tools/ci-report.js.map +1 -0
- package/dist/src/tools/diff-runs.d.ts +28 -0
- package/dist/src/tools/diff-runs.js +39 -0
- package/dist/src/tools/diff-runs.js.map +1 -0
- package/dist/src/tools/get-history.d.ts +21 -0
- package/dist/src/tools/get-history.js +37 -0
- package/dist/src/tools/get-history.js.map +1 -0
- package/dist/src/tools/get-last-run.d.ts +21 -0
- package/dist/src/tools/get-last-run.js +47 -0
- package/dist/src/tools/get-last-run.js.map +1 -0
- package/dist/src/tools/helpers.d.ts +8 -0
- package/dist/src/tools/helpers.js +32 -0
- package/dist/src/tools/helpers.js.map +1 -0
- package/dist/src/tools/lock-verify.d.ts +21 -0
- package/dist/src/tools/lock-verify.js +47 -0
- package/dist/src/tools/lock-verify.js.map +1 -0
- package/dist/src/tools/record.d.ts +23 -0
- package/dist/src/tools/record.js +48 -0
- package/dist/src/tools/record.js.map +1 -0
- package/dist/src/tools/replay.d.ts +21 -0
- package/dist/src/tools/replay.js +54 -0
- package/dist/src/tools/replay.js.map +1 -0
- package/dist/src/tools/scan.d.ts +18 -0
- package/dist/src/tools/scan.js +43 -0
- package/dist/src/tools/scan.js.map +1 -0
- package/dist/src/tools/score-server.d.ts +23 -0
- package/dist/src/tools/score-server.js +53 -0
- package/dist/src/tools/score-server.js.map +1 -0
- package/dist/src/tools/suggest-servers.d.ts +21 -0
- package/dist/src/tools/suggest-servers.js +114 -0
- package/dist/src/tools/suggest-servers.js.map +1 -0
- package/dist/src/tools/verify-tool.d.ts +25 -0
- package/dist/src/tools/verify-tool.js +48 -0
- package/dist/src/tools/verify-tool.js.map +1 -0
- package/dist/src/tools/watch.d.ts +23 -0
- package/dist/src/tools/watch.js +67 -0
- package/dist/src/tools/watch.js.map +1 -0
- package/dist/src/types.d.ts +26 -1
- package/dist/src/utils/security.d.ts +3 -0
- package/dist/src/utils/security.js +37 -0
- package/dist/src/utils/security.js.map +1 -0
- package/dist/src/validate.d.ts +1 -0
- package/dist/src/validate.js +119 -35
- package/dist/src/validate.js.map +1 -1
- package/docs/agent-tasks.md +1 -1
- package/docs/commercial-boundary.md +9 -1
- package/docs/contributor-recognition.md +2 -0
- package/docs/demo.svg +1 -59
- package/docs/mcp-receipts.md +9 -0
- package/docs/mcp-server-safety-index.md +21 -16
- package/docs/metrics-dashboard.md +17 -1
- package/docs/private-mcp-fleet-risk-graph.md +69 -0
- package/docs/receipt-graph.md +118 -31
- package/docs/safety-index/artifacts/chrome-devtools-mcp-server.json +1745 -0
- package/docs/safety-index/artifacts/chrome-devtools-mcp-server.md +169 -0
- package/docs/safety-index/artifacts/filesystem-mcp-server.json +786 -0
- package/docs/safety-index/artifacts/filesystem-mcp-server.md +169 -0
- package/docs/safety-index/artifacts/github-mcp-server.json +1707 -0
- package/docs/safety-index/artifacts/github-mcp-server.md +169 -0
- package/docs/safety-index/mcp-risk-graph.html +167 -0
- package/docs/safety-index/mcp-risk-graph.json +669 -0
- package/docs/safety-index/mcp-risk-graph.md +47 -0
- package/docs/safety-index/targets.json +57 -0
- package/docs/sample-private-fleet-risk-graph.md +90 -0
- package/package.json +21 -11
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"generatedAt": "2026-07-06T22:47:17.078Z",
|
|
4
|
+
"toolVersion": "1.28.2",
|
|
5
|
+
"nodes": [
|
|
6
|
+
{
|
|
7
|
+
"id": "boundary:browser",
|
|
8
|
+
"name": "browser",
|
|
9
|
+
"source": "capability-boundary",
|
|
10
|
+
"serverPackageOrRepo": null,
|
|
11
|
+
"capabilityBoundary": "browser",
|
|
12
|
+
"receiptState": "not_generated",
|
|
13
|
+
"recommendedAction": "gate",
|
|
14
|
+
"riskLevel": "medium",
|
|
15
|
+
"evidenceRefs": [],
|
|
16
|
+
"ciCommand": null
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "boundary:filesystem",
|
|
20
|
+
"name": "filesystem",
|
|
21
|
+
"source": "capability-boundary",
|
|
22
|
+
"serverPackageOrRepo": null,
|
|
23
|
+
"capabilityBoundary": "filesystem",
|
|
24
|
+
"receiptState": "not_generated",
|
|
25
|
+
"recommendedAction": "gate",
|
|
26
|
+
"riskLevel": "medium",
|
|
27
|
+
"evidenceRefs": [],
|
|
28
|
+
"ciCommand": null
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "boundary:infra-cloud",
|
|
32
|
+
"name": "infra-cloud",
|
|
33
|
+
"source": "capability-boundary",
|
|
34
|
+
"serverPackageOrRepo": null,
|
|
35
|
+
"capabilityBoundary": "infra-cloud",
|
|
36
|
+
"receiptState": "not_generated",
|
|
37
|
+
"recommendedAction": "gate",
|
|
38
|
+
"riskLevel": "medium",
|
|
39
|
+
"evidenceRefs": [],
|
|
40
|
+
"ciCommand": null
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "boundary:memory",
|
|
44
|
+
"name": "memory",
|
|
45
|
+
"source": "capability-boundary",
|
|
46
|
+
"serverPackageOrRepo": null,
|
|
47
|
+
"capabilityBoundary": "memory",
|
|
48
|
+
"receiptState": "not_generated",
|
|
49
|
+
"recommendedAction": "gate",
|
|
50
|
+
"riskLevel": "medium",
|
|
51
|
+
"evidenceRefs": [],
|
|
52
|
+
"ciCommand": null
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "boundary:unknown",
|
|
56
|
+
"name": "unknown",
|
|
57
|
+
"source": "capability-boundary",
|
|
58
|
+
"serverPackageOrRepo": null,
|
|
59
|
+
"capabilityBoundary": "unknown",
|
|
60
|
+
"receiptState": "not_generated",
|
|
61
|
+
"recommendedAction": "allow",
|
|
62
|
+
"riskLevel": "unknown",
|
|
63
|
+
"evidenceRefs": [],
|
|
64
|
+
"ciCommand": null
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "server:a6f199ad8d4e160f",
|
|
68
|
+
"name": "@cyanheads/git-mcp-server",
|
|
69
|
+
"source": "run-artifact",
|
|
70
|
+
"serverPackageOrRepo": "@cyanheads/git-mcp-server",
|
|
71
|
+
"capabilityBoundary": "filesystem",
|
|
72
|
+
"receiptState": "not_generated",
|
|
73
|
+
"recommendedAction": "gate",
|
|
74
|
+
"riskLevel": "medium",
|
|
75
|
+
"evidenceRefs": [
|
|
76
|
+
{
|
|
77
|
+
"type": "run-artifact",
|
|
78
|
+
"path": "docs/safety-index/artifacts/cyanheads-git-mcp-server.json",
|
|
79
|
+
"sha256": "d971c980f63c7e267ebf445ad287783cf1b0061472e120659ff8454d318d8cf5"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "attack-sim",
|
|
83
|
+
"path": "docs/safety-index/artifacts/cyanheads-git-mcp-server.json"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @cyanheads/git-mcp-server\" --sarif --schedule weekly"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "server:035ad89537d6510b",
|
|
90
|
+
"name": "Browser MCP",
|
|
91
|
+
"source": "run-artifact",
|
|
92
|
+
"serverPackageOrRepo": "@browsermcp/mcp",
|
|
93
|
+
"capabilityBoundary": "browser",
|
|
94
|
+
"receiptState": "not_generated",
|
|
95
|
+
"recommendedAction": "allow",
|
|
96
|
+
"riskLevel": "low",
|
|
97
|
+
"evidenceRefs": [
|
|
98
|
+
{
|
|
99
|
+
"type": "run-artifact",
|
|
100
|
+
"path": "docs/safety-index/artifacts/browsermcp-server.json",
|
|
101
|
+
"sha256": "88ecd58add9adb4535501e86abaeddc7c425afdc43227a77f890b6605f1197db"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"type": "attack-sim",
|
|
105
|
+
"path": "docs/safety-index/artifacts/browsermcp-server.json"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @browsermcp/mcp\" --sarif --schedule weekly"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "server:6b95baeb28bffc42",
|
|
112
|
+
"name": "Context7",
|
|
113
|
+
"source": "run-artifact",
|
|
114
|
+
"serverPackageOrRepo": "@upstash/context7-mcp",
|
|
115
|
+
"capabilityBoundary": "unknown",
|
|
116
|
+
"receiptState": "not_generated",
|
|
117
|
+
"recommendedAction": "gate",
|
|
118
|
+
"riskLevel": "medium",
|
|
119
|
+
"evidenceRefs": [
|
|
120
|
+
{
|
|
121
|
+
"type": "run-artifact",
|
|
122
|
+
"path": "docs/safety-index/artifacts/context7-server.json",
|
|
123
|
+
"sha256": "3a0634207bdcbbd18c8aa71efc48f01bbbd85a0b1d8c3f6714536bc956c28826"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "attack-sim",
|
|
127
|
+
"path": "docs/safety-index/artifacts/context7-server.json"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @upstash/context7-mcp\" --sarif --schedule weekly"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "server:b1f7c29595b3542e",
|
|
134
|
+
"name": "example-servers/puppeteer",
|
|
135
|
+
"source": "run-artifact",
|
|
136
|
+
"serverPackageOrRepo": "puppeteer-mcp-server",
|
|
137
|
+
"capabilityBoundary": "browser",
|
|
138
|
+
"receiptState": "not_generated",
|
|
139
|
+
"recommendedAction": "quarantine",
|
|
140
|
+
"riskLevel": "high",
|
|
141
|
+
"evidenceRefs": [
|
|
142
|
+
{
|
|
143
|
+
"type": "run-artifact",
|
|
144
|
+
"path": "docs/safety-index/artifacts/puppeteer-server.json",
|
|
145
|
+
"sha256": "5fe7522609f91c09f641f98913c83b9cfb372716d505432a8fd7436c8f91fbdb"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "attack-sim",
|
|
149
|
+
"path": "docs/safety-index/artifacts/puppeteer-server.json"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y puppeteer-mcp-server\" --sarif --schedule weekly"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "server:57567ad1deefc1c3",
|
|
156
|
+
"name": "kubernetes",
|
|
157
|
+
"source": "run-artifact",
|
|
158
|
+
"serverPackageOrRepo": "mcp-server-kubernetes",
|
|
159
|
+
"capabilityBoundary": "infra-cloud",
|
|
160
|
+
"receiptState": "not_generated",
|
|
161
|
+
"recommendedAction": "quarantine",
|
|
162
|
+
"riskLevel": "high",
|
|
163
|
+
"evidenceRefs": [
|
|
164
|
+
{
|
|
165
|
+
"type": "run-artifact",
|
|
166
|
+
"path": "docs/safety-index/artifacts/kubernetes-server.attack.json",
|
|
167
|
+
"sha256": "3242514d67f85ba610cb3776262112f3f7870baaef9f0b28dfa3b8c61bdffae4"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"type": "attack-sim",
|
|
171
|
+
"path": "docs/safety-index/artifacts/kubernetes-server.attack.json"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"type": "run-artifact",
|
|
175
|
+
"path": "docs/safety-index/artifacts/kubernetes-server.json",
|
|
176
|
+
"sha256": "913bccf0d9992cd6d38c7bc4abbe5fbc2783277a68e33c94d1394aa359db1ea4"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "attack-sim",
|
|
180
|
+
"path": "docs/safety-index/artifacts/kubernetes-server.json"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y mcp-server-kubernetes\" --sarif --schedule weekly"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "server:e5498920ff2df847",
|
|
187
|
+
"name": "mcp-server-chart",
|
|
188
|
+
"source": "run-artifact",
|
|
189
|
+
"serverPackageOrRepo": "@antv/mcp-server-chart",
|
|
190
|
+
"capabilityBoundary": "unknown",
|
|
191
|
+
"receiptState": "not_generated",
|
|
192
|
+
"recommendedAction": "allow",
|
|
193
|
+
"riskLevel": "low",
|
|
194
|
+
"evidenceRefs": [
|
|
195
|
+
{
|
|
196
|
+
"type": "run-artifact",
|
|
197
|
+
"path": "docs/safety-index/artifacts/antv-chart-server.json",
|
|
198
|
+
"sha256": "6731abd894766ae159faef2a4db1275fa711f2587f2b7dab9fdaac1fbaf08ef3"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"type": "attack-sim",
|
|
202
|
+
"path": "docs/safety-index/artifacts/antv-chart-server.json"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @antv/mcp-server-chart\" --sarif --schedule weekly"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "server:b010c790088ce622",
|
|
209
|
+
"name": "mcp-servers/everything",
|
|
210
|
+
"source": "run-artifact",
|
|
211
|
+
"serverPackageOrRepo": "@modelcontextprotocol/server-everything",
|
|
212
|
+
"capabilityBoundary": "filesystem",
|
|
213
|
+
"receiptState": "not_generated",
|
|
214
|
+
"recommendedAction": "allow",
|
|
215
|
+
"riskLevel": "low",
|
|
216
|
+
"evidenceRefs": [
|
|
217
|
+
{
|
|
218
|
+
"type": "run-artifact",
|
|
219
|
+
"path": "docs/safety-index/artifacts/everything-server.json",
|
|
220
|
+
"sha256": "f777a50b319e318e4b9ad8604afc816cdcdfeadcaa05d6e7b323eaaa1830789c"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"type": "attack-sim",
|
|
224
|
+
"path": "docs/safety-index/artifacts/everything-server.json"
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @modelcontextprotocol/server-everything\" --sarif --schedule weekly"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "server:30e6e77d471786bd",
|
|
231
|
+
"name": "memory-server",
|
|
232
|
+
"source": "run-artifact",
|
|
233
|
+
"serverPackageOrRepo": "@modelcontextprotocol/server-memory",
|
|
234
|
+
"capabilityBoundary": "memory",
|
|
235
|
+
"receiptState": "not_generated",
|
|
236
|
+
"recommendedAction": "allow",
|
|
237
|
+
"riskLevel": "low",
|
|
238
|
+
"evidenceRefs": [
|
|
239
|
+
{
|
|
240
|
+
"type": "run-artifact",
|
|
241
|
+
"path": "docs/safety-index/artifacts/memory-server.json",
|
|
242
|
+
"sha256": "369ac7e0a4d49ce7b8b2cecf543b8813452926053bc79f5533ccc01392375c1c"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"type": "attack-sim",
|
|
246
|
+
"path": "docs/safety-index/artifacts/memory-server.json"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @modelcontextprotocol/server-memory\" --sarif --schedule weekly"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "server:eafd616fec331c2f",
|
|
253
|
+
"name": "opentofu",
|
|
254
|
+
"source": "run-artifact",
|
|
255
|
+
"serverPackageOrRepo": "@opentofu/opentofu-mcp-server",
|
|
256
|
+
"capabilityBoundary": "infra-cloud",
|
|
257
|
+
"receiptState": "not_generated",
|
|
258
|
+
"recommendedAction": "gate",
|
|
259
|
+
"riskLevel": "medium",
|
|
260
|
+
"evidenceRefs": [
|
|
261
|
+
{
|
|
262
|
+
"type": "run-artifact",
|
|
263
|
+
"path": "docs/safety-index/artifacts/opentofu-server.json",
|
|
264
|
+
"sha256": "3bd1034cce5f6780b801149bc3139b0307aa84f85ced005a4d170ca2b3ef97b5"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"type": "attack-sim",
|
|
268
|
+
"path": "docs/safety-index/artifacts/opentofu-server.json"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @opentofu/opentofu-mcp-server\" --sarif --schedule weekly"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "server:8ce8a49061581b20",
|
|
275
|
+
"name": "Playwright",
|
|
276
|
+
"source": "run-artifact",
|
|
277
|
+
"serverPackageOrRepo": "@playwright/mcp",
|
|
278
|
+
"capabilityBoundary": "browser",
|
|
279
|
+
"receiptState": "not_generated",
|
|
280
|
+
"recommendedAction": "quarantine",
|
|
281
|
+
"riskLevel": "high",
|
|
282
|
+
"evidenceRefs": [
|
|
283
|
+
{
|
|
284
|
+
"type": "run-artifact",
|
|
285
|
+
"path": "docs/safety-index/artifacts/playwright-mcp-server.json",
|
|
286
|
+
"sha256": "8876fe55de6bc2a018214484ecda8cb2cb338d42c37eb8eb3d45e4345bfa2d13"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"type": "attack-sim",
|
|
290
|
+
"path": "docs/safety-index/artifacts/playwright-mcp-server.json"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @playwright/mcp\" --sarif --schedule weekly"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"id": "server:fa823c0c44196cd1",
|
|
297
|
+
"name": "playwright-mcp",
|
|
298
|
+
"source": "run-artifact",
|
|
299
|
+
"serverPackageOrRepo": "@executeautomation/playwright-mcp-server",
|
|
300
|
+
"capabilityBoundary": "browser",
|
|
301
|
+
"receiptState": "not_generated",
|
|
302
|
+
"recommendedAction": "quarantine",
|
|
303
|
+
"riskLevel": "high",
|
|
304
|
+
"evidenceRefs": [
|
|
305
|
+
{
|
|
306
|
+
"type": "run-artifact",
|
|
307
|
+
"path": "docs/safety-index/artifacts/executeautomation-playwright-server.json",
|
|
308
|
+
"sha256": "ed32ff8aae0913223f4d47000339fed20d2a86908400b599d2bfaa8091d0cad0"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"type": "attack-sim",
|
|
312
|
+
"path": "docs/safety-index/artifacts/executeautomation-playwright-server.json"
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @executeautomation/playwright-mcp-server\" --sarif --schedule weekly"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "server:54615b35971daa68",
|
|
319
|
+
"name": "promptopia-mcp",
|
|
320
|
+
"source": "run-artifact",
|
|
321
|
+
"serverPackageOrRepo": "promptopia-mcp",
|
|
322
|
+
"capabilityBoundary": "filesystem",
|
|
323
|
+
"receiptState": "not_generated",
|
|
324
|
+
"recommendedAction": "allow",
|
|
325
|
+
"riskLevel": "low",
|
|
326
|
+
"evidenceRefs": [
|
|
327
|
+
{
|
|
328
|
+
"type": "run-artifact",
|
|
329
|
+
"path": "docs/safety-index/artifacts/promptopia-server.json",
|
|
330
|
+
"sha256": "1fa980c07a4ce10f0e9df714549f8f049621ec8989e13daa6b24a3f8284ebf67"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"type": "attack-sim",
|
|
334
|
+
"path": "docs/safety-index/artifacts/promptopia-server.json"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y promptopia-mcp\" --sarif --schedule weekly"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "server:f4495758cf92f287",
|
|
341
|
+
"name": "Ref",
|
|
342
|
+
"source": "run-artifact",
|
|
343
|
+
"serverPackageOrRepo": "ref-tools-mcp",
|
|
344
|
+
"capabilityBoundary": "unknown",
|
|
345
|
+
"receiptState": "not_generated",
|
|
346
|
+
"recommendedAction": "allow",
|
|
347
|
+
"riskLevel": "low",
|
|
348
|
+
"evidenceRefs": [
|
|
349
|
+
{
|
|
350
|
+
"type": "run-artifact",
|
|
351
|
+
"path": "docs/safety-index/artifacts/ref-tools-server.json",
|
|
352
|
+
"sha256": "e247789d8042c6f72c2b804202ec2ea697f876d903446beee0aa9291d00efe97"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"type": "attack-sim",
|
|
356
|
+
"path": "docs/safety-index/artifacts/ref-tools-server.json"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y ref-tools-mcp\" --sarif --schedule weekly"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"id": "server:6486282ca7845d72",
|
|
363
|
+
"name": "secure-filesystem-server",
|
|
364
|
+
"source": "run-artifact",
|
|
365
|
+
"serverPackageOrRepo": "@modelcontextprotocol/server-filesystem",
|
|
366
|
+
"capabilityBoundary": "filesystem",
|
|
367
|
+
"receiptState": "not_generated",
|
|
368
|
+
"recommendedAction": "gate",
|
|
369
|
+
"riskLevel": "medium",
|
|
370
|
+
"evidenceRefs": [
|
|
371
|
+
{
|
|
372
|
+
"type": "run-artifact",
|
|
373
|
+
"path": "docs/safety-index/artifacts/filesystem-server.json",
|
|
374
|
+
"sha256": "d49d1fbad362e7d5f6fe483c59c4505adbc4c168100b18b46c30669f2689eccf"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"type": "attack-sim",
|
|
378
|
+
"path": "docs/safety-index/artifacts/filesystem-server.json"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @modelcontextprotocol/server-filesystem examples/filesystem-fixture\" --sarif --schedule weekly"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": "server:5a614022054e4907",
|
|
385
|
+
"name": "sequential-thinking-server",
|
|
386
|
+
"source": "run-artifact",
|
|
387
|
+
"serverPackageOrRepo": "@modelcontextprotocol/server-sequential-thinking",
|
|
388
|
+
"capabilityBoundary": "unknown",
|
|
389
|
+
"receiptState": "not_generated",
|
|
390
|
+
"recommendedAction": "allow",
|
|
391
|
+
"riskLevel": "low",
|
|
392
|
+
"evidenceRefs": [
|
|
393
|
+
{
|
|
394
|
+
"type": "run-artifact",
|
|
395
|
+
"path": "docs/safety-index/artifacts/sequential-thinking-server.json",
|
|
396
|
+
"sha256": "005f865fea9e60e7c3801183ae7dca5bf77f1346c0c805c04a80ded75956bce9"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"type": "attack-sim",
|
|
400
|
+
"path": "docs/safety-index/artifacts/sequential-thinking-server.json"
|
|
401
|
+
}
|
|
402
|
+
],
|
|
403
|
+
"ciCommand": "mcp-observatory setup-ci --all --command \"npx -y @modelcontextprotocol/server-sequential-thinking\" --sarif --schedule weekly"
|
|
404
|
+
}
|
|
405
|
+
],
|
|
406
|
+
"edges": [
|
|
407
|
+
{
|
|
408
|
+
"from": "server:035ad89537d6510b",
|
|
409
|
+
"to": "boundary:browser",
|
|
410
|
+
"type": "has-capability-boundary",
|
|
411
|
+
"reason": "Observed tools/findings classify this server as browser."
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"from": "server:035ad89537d6510b",
|
|
415
|
+
"to": "boundary:browser",
|
|
416
|
+
"type": "has-evidence",
|
|
417
|
+
"reason": "Safe attack-sim evidence is present."
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"from": "server:30e6e77d471786bd",
|
|
421
|
+
"to": "boundary:memory",
|
|
422
|
+
"type": "has-capability-boundary",
|
|
423
|
+
"reason": "Observed tools/findings classify this server as memory."
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"from": "server:30e6e77d471786bd",
|
|
427
|
+
"to": "boundary:memory",
|
|
428
|
+
"type": "has-evidence",
|
|
429
|
+
"reason": "Safe attack-sim evidence is present."
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"from": "server:54615b35971daa68",
|
|
433
|
+
"to": "boundary:filesystem",
|
|
434
|
+
"type": "has-capability-boundary",
|
|
435
|
+
"reason": "Observed tools/findings classify this server as filesystem."
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"from": "server:54615b35971daa68",
|
|
439
|
+
"to": "boundary:filesystem",
|
|
440
|
+
"type": "has-evidence",
|
|
441
|
+
"reason": "Safe attack-sim evidence is present."
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"from": "server:57567ad1deefc1c3",
|
|
445
|
+
"to": "boundary:infra-cloud",
|
|
446
|
+
"type": "has-capability-boundary",
|
|
447
|
+
"reason": "Observed tools/findings classify this server as infra-cloud."
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"from": "server:57567ad1deefc1c3",
|
|
451
|
+
"to": "boundary:infra-cloud",
|
|
452
|
+
"type": "has-evidence",
|
|
453
|
+
"reason": "Safe attack-sim evidence is present."
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"from": "server:57567ad1deefc1c3",
|
|
457
|
+
"to": "boundary:infra-cloud",
|
|
458
|
+
"type": "requires-action",
|
|
459
|
+
"reason": "Quarantine from production agents until the boundary is reduced or accepted."
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"from": "server:5a614022054e4907",
|
|
463
|
+
"to": "boundary:unknown",
|
|
464
|
+
"type": "has-capability-boundary",
|
|
465
|
+
"reason": "Observed tools/findings classify this server as unknown."
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"from": "server:5a614022054e4907",
|
|
469
|
+
"to": "boundary:unknown",
|
|
470
|
+
"type": "has-evidence",
|
|
471
|
+
"reason": "Safe attack-sim evidence is present."
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"from": "server:6486282ca7845d72",
|
|
475
|
+
"to": "boundary:filesystem",
|
|
476
|
+
"type": "has-capability-boundary",
|
|
477
|
+
"reason": "Observed tools/findings classify this server as filesystem."
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"from": "server:6486282ca7845d72",
|
|
481
|
+
"to": "boundary:filesystem",
|
|
482
|
+
"type": "has-evidence",
|
|
483
|
+
"reason": "Safe attack-sim evidence is present."
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"from": "server:6486282ca7845d72",
|
|
487
|
+
"to": "boundary:filesystem",
|
|
488
|
+
"type": "requires-action",
|
|
489
|
+
"reason": "Gate adoption until maintainers review the finding."
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"from": "server:6b95baeb28bffc42",
|
|
493
|
+
"to": "boundary:unknown",
|
|
494
|
+
"type": "has-capability-boundary",
|
|
495
|
+
"reason": "Observed tools/findings classify this server as unknown."
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"from": "server:6b95baeb28bffc42",
|
|
499
|
+
"to": "boundary:unknown",
|
|
500
|
+
"type": "has-evidence",
|
|
501
|
+
"reason": "Safe attack-sim evidence is present."
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"from": "server:6b95baeb28bffc42",
|
|
505
|
+
"to": "boundary:unknown",
|
|
506
|
+
"type": "requires-action",
|
|
507
|
+
"reason": "Gate adoption until maintainers review the finding."
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"from": "server:8ce8a49061581b20",
|
|
511
|
+
"to": "boundary:browser",
|
|
512
|
+
"type": "has-capability-boundary",
|
|
513
|
+
"reason": "Observed tools/findings classify this server as browser."
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"from": "server:8ce8a49061581b20",
|
|
517
|
+
"to": "boundary:browser",
|
|
518
|
+
"type": "has-evidence",
|
|
519
|
+
"reason": "Safe attack-sim evidence is present."
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"from": "server:8ce8a49061581b20",
|
|
523
|
+
"to": "boundary:browser",
|
|
524
|
+
"type": "requires-action",
|
|
525
|
+
"reason": "Quarantine from production agents until the boundary is reduced or accepted."
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"from": "server:a6f199ad8d4e160f",
|
|
529
|
+
"to": "boundary:filesystem",
|
|
530
|
+
"type": "has-capability-boundary",
|
|
531
|
+
"reason": "Observed tools/findings classify this server as filesystem."
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"from": "server:a6f199ad8d4e160f",
|
|
535
|
+
"to": "boundary:filesystem",
|
|
536
|
+
"type": "has-evidence",
|
|
537
|
+
"reason": "Safe attack-sim evidence is present."
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"from": "server:a6f199ad8d4e160f",
|
|
541
|
+
"to": "boundary:filesystem",
|
|
542
|
+
"type": "requires-action",
|
|
543
|
+
"reason": "Gate adoption until maintainers review the finding."
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"from": "server:b010c790088ce622",
|
|
547
|
+
"to": "boundary:filesystem",
|
|
548
|
+
"type": "has-capability-boundary",
|
|
549
|
+
"reason": "Observed tools/findings classify this server as filesystem."
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"from": "server:b010c790088ce622",
|
|
553
|
+
"to": "boundary:filesystem",
|
|
554
|
+
"type": "has-evidence",
|
|
555
|
+
"reason": "Safe attack-sim evidence is present."
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"from": "server:b1f7c29595b3542e",
|
|
559
|
+
"to": "boundary:browser",
|
|
560
|
+
"type": "has-capability-boundary",
|
|
561
|
+
"reason": "Observed tools/findings classify this server as browser."
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"from": "server:b1f7c29595b3542e",
|
|
565
|
+
"to": "boundary:browser",
|
|
566
|
+
"type": "has-evidence",
|
|
567
|
+
"reason": "Safe attack-sim evidence is present."
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"from": "server:b1f7c29595b3542e",
|
|
571
|
+
"to": "boundary:browser",
|
|
572
|
+
"type": "requires-action",
|
|
573
|
+
"reason": "Quarantine from production agents until the boundary is reduced or accepted."
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"from": "server:e5498920ff2df847",
|
|
577
|
+
"to": "boundary:unknown",
|
|
578
|
+
"type": "has-capability-boundary",
|
|
579
|
+
"reason": "Observed tools/findings classify this server as unknown."
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"from": "server:e5498920ff2df847",
|
|
583
|
+
"to": "boundary:unknown",
|
|
584
|
+
"type": "has-evidence",
|
|
585
|
+
"reason": "Safe attack-sim evidence is present."
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"from": "server:eafd616fec331c2f",
|
|
589
|
+
"to": "boundary:infra-cloud",
|
|
590
|
+
"type": "has-capability-boundary",
|
|
591
|
+
"reason": "Observed tools/findings classify this server as infra-cloud."
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"from": "server:eafd616fec331c2f",
|
|
595
|
+
"to": "boundary:infra-cloud",
|
|
596
|
+
"type": "has-evidence",
|
|
597
|
+
"reason": "Safe attack-sim evidence is present."
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"from": "server:eafd616fec331c2f",
|
|
601
|
+
"to": "boundary:infra-cloud",
|
|
602
|
+
"type": "requires-action",
|
|
603
|
+
"reason": "Gate adoption until maintainers review the finding."
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"from": "server:f4495758cf92f287",
|
|
607
|
+
"to": "boundary:unknown",
|
|
608
|
+
"type": "has-capability-boundary",
|
|
609
|
+
"reason": "Observed tools/findings classify this server as unknown."
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"from": "server:f4495758cf92f287",
|
|
613
|
+
"to": "boundary:unknown",
|
|
614
|
+
"type": "has-evidence",
|
|
615
|
+
"reason": "Safe attack-sim evidence is present."
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"from": "server:fa823c0c44196cd1",
|
|
619
|
+
"to": "boundary:browser",
|
|
620
|
+
"type": "has-capability-boundary",
|
|
621
|
+
"reason": "Observed tools/findings classify this server as browser."
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"from": "server:fa823c0c44196cd1",
|
|
625
|
+
"to": "boundary:browser",
|
|
626
|
+
"type": "has-evidence",
|
|
627
|
+
"reason": "Safe attack-sim evidence is present."
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"from": "server:fa823c0c44196cd1",
|
|
631
|
+
"to": "boundary:browser",
|
|
632
|
+
"type": "requires-action",
|
|
633
|
+
"reason": "Quarantine from production agents until the boundary is reduced or accepted."
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"summary": {
|
|
637
|
+
"totalServers": 15,
|
|
638
|
+
"totalBoundaries": 5,
|
|
639
|
+
"highestRiskLevel": "high",
|
|
640
|
+
"actionCounts": {
|
|
641
|
+
"allow": 7,
|
|
642
|
+
"gate": 4,
|
|
643
|
+
"rerun": 0,
|
|
644
|
+
"quarantine": 4,
|
|
645
|
+
"escalate": 0
|
|
646
|
+
},
|
|
647
|
+
"boundaryCounts": {
|
|
648
|
+
"filesystem": 4,
|
|
649
|
+
"browser": 4,
|
|
650
|
+
"command-execution": 0,
|
|
651
|
+
"infra-cloud": 2,
|
|
652
|
+
"memory": 1,
|
|
653
|
+
"data-api": 0,
|
|
654
|
+
"identity-auth": 0,
|
|
655
|
+
"unknown": 4
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"recommendedActions": [
|
|
659
|
+
"@cyanheads/git-mcp-server: Gate adoption until maintainers review the finding.",
|
|
660
|
+
"Context7: Gate adoption until maintainers review the finding.",
|
|
661
|
+
"opentofu: Gate adoption until maintainers review the finding.",
|
|
662
|
+
"secure-filesystem-server: Gate adoption until maintainers review the finding.",
|
|
663
|
+
"example-servers/puppeteer: Quarantine from production agents until the boundary is reduced or accepted.",
|
|
664
|
+
"kubernetes: Quarantine from production agents until the boundary is reduced or accepted.",
|
|
665
|
+
"Playwright: Quarantine from production agents until the boundary is reduced or accepted.",
|
|
666
|
+
"playwright-mcp: Quarantine from production agents until the boundary is reduced or accepted."
|
|
667
|
+
],
|
|
668
|
+
"warnings": []
|
|
669
|
+
}
|