-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinsecure-server.report.json
More file actions
650 lines (650 loc) · 19.7 KB
/
insecure-server.report.json
File metadata and controls
650 lines (650 loc) · 19.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
{
"schema": {
"id": "mcp-scorecard-report",
"version": "1.0"
},
"generator": {
"product_name": "MCP Scorecard",
"tool_name": "mcp-scorecard",
"package_name": "mcp-scorecard",
"package_version": "1.0.0"
},
"scan": {
"timestamp": "2026-04-09T16:08:35.505980+00:00",
"target": {
"raw": "stdio:[\".\\\\.venv\\\\Scripts\\\\python\",\"examples\\\\insecure-server\\\\server.py\"]",
"transport": "stdio",
"description": "Local MCP server launched over stdio.",
"server_name": "Insecure Demo Server",
"server_version": "0.1.0",
"protocol_version": "2025-11-25",
"metadata": {
"mcp": {
"protocolVersion": "2025-11-25",
"capabilities": {
"tools": {}
},
"transport": "stdio",
"command": [
".\\.venv\\Scripts\\python",
"examples\\insecure-server\\server.py"
],
"instructions": "Demonstration-only MCP server with intentionally risky tools."
}
}
}
},
"inventory": {
"tool_count": 4,
"tools": [
{
"name": "exec_command",
"description": "Execute an arbitrary shell command on the host machine.",
"input_schema": {
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Shell command to execute exactly as provided."
}
},
"required": [
"command"
],
"additionalProperties": false
},
"metadata": {}
},
{
"name": "write_file",
"description": "Write text content to any file path on disk.",
"input_schema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Absolute or relative path to write."
},
"content": {
"type": "string",
"description": "Content to write to the target file."
},
"overwrite": {
"type": "boolean",
"description": "Overwrite the file if it already exists."
}
},
"required": [
"path",
"content"
],
"additionalProperties": false
},
"metadata": {}
},
{
"name": "do_it",
"description": "Helps with stuff.",
"input_schema": {
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "Thing to process."
}
},
"required": [
"target"
],
"additionalProperties": false
},
"metadata": {}
},
{
"name": "debug_payload",
"description": "Debug helper that accepts whatever input is available.",
"input_schema": {
"type": "object",
"description": "Arbitrary debug payload.",
"additionalProperties": true
},
"metadata": {}
}
]
},
"scorecard": {
"total_score": {
"value": 10,
"max": 100,
"penalty_points": 90
},
"category_scores": {
"conformance": {
"score": 90,
"max_score": 100,
"penalty_points": 10,
"finding_count": 1,
"check_penalties": {
"schema_allows_arbitrary_properties": 10
}
},
"security": {
"score": 60,
"max_score": 100,
"penalty_points": 40,
"finding_count": 2,
"check_penalties": {
"dangerous_exec_tool": 20,
"dangerous_fs_write_tool": 20
}
},
"ergonomics": {
"score": 60,
"max_score": 100,
"penalty_points": 40,
"finding_count": 4,
"check_penalties": {
"overly_generic_tool_name": 10,
"vague_tool_description": 10,
"weak_input_schema": 10,
"write_tool_without_scope_hint": 10
}
},
"metadata": {
"score": 100,
"max_score": 100,
"penalty_points": 0,
"finding_count": 0,
"check_penalties": {}
}
},
"finding_counts": {
"total": 7,
"by_severity": {
"info": 0,
"warning": 5,
"error": 2
},
"by_bucket": {
"security": {
"finding_count": 2,
"penalty_points": 40
},
"ergonomics": {
"finding_count": 4,
"penalty_points": 40
},
"conformance": {
"finding_count": 1,
"penalty_points": 10
}
}
},
"why_this_score": "Score is driven mainly by security findings in command execution and file system and ergonomics findings.",
"score_meaning": "Deterministic CI-first quality scorecard based on conformance, security-relevant capabilities, ergonomics, and metadata hygiene.",
"limitations": [
"Low score means more deterministic findings or higher-risk exposed surface, not malicious intent.",
"High score means fewer deterministic findings, not a guarantee of safety."
]
},
"checks": [
{
"id": "duplicate_tool_names",
"title": "Duplicate tool names",
"bucket": "conformance",
"severity": "error",
"rationale": "Tool names should be unique within one MCP server.",
"category": "tool-identity",
"risk_category": "metadata_hygiene",
"score_impact": 20,
"tags": [
"tools",
"identity"
]
},
{
"id": "missing_tool_description",
"title": "Missing tool description",
"bucket": "metadata",
"severity": "warning",
"rationale": "Each tool should include a non-empty description.",
"category": "tool-description",
"risk_category": "metadata_hygiene",
"score_impact": 10,
"tags": [
"tools",
"description"
]
},
{
"id": "overly_generic_tool_name",
"title": "Overly generic tool name",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool names should communicate behavior clearly.",
"category": "tool-identity",
"risk_category": "metadata_hygiene",
"score_impact": 10,
"tags": [
"tools",
"identity"
]
},
{
"id": "vague_tool_description",
"title": "Vague tool description",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool descriptions should clearly explain what the tool does.",
"category": "tool-description",
"risk_category": "metadata_hygiene",
"score_impact": 10,
"tags": [
"tools",
"description"
]
},
{
"id": "missing_schema_type",
"title": "Missing schema type",
"bucket": "conformance",
"severity": "warning",
"rationale": "Tool input schemas should declare a top-level type.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"score_impact": 10,
"tags": [
"schema",
"validation"
]
},
{
"id": "schema_allows_arbitrary_properties",
"title": "Schema allows arbitrary properties",
"bucket": "conformance",
"severity": "warning",
"rationale": "Tool input schemas should not allow arbitrary top-level properties.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"score_impact": 10,
"tags": [
"schema",
"validation"
]
},
{
"id": "weak_input_schema",
"title": "Weak input schema",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool input schemas should constrain free-form payloads clearly.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"score_impact": 10,
"tags": [
"schema",
"validation"
]
},
{
"id": "missing_required_for_critical_fields",
"title": "Missing required critical fields",
"bucket": "conformance",
"severity": "warning",
"rationale": "Critical schema fields such as path, command, or URL should be required.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"score_impact": 10,
"tags": [
"schema",
"validation"
]
},
{
"id": "dangerous_exec_tool",
"title": "Dangerous execution tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that execute host shell commands are high risk.",
"category": "capability",
"risk_category": "command_execution",
"score_impact": 20,
"tags": [
"capability",
"execution"
]
},
{
"id": "dangerous_shell_download_exec",
"title": "Dangerous download-and-execute tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that combine remote download with shell execution are high risk.",
"category": "capability",
"risk_category": "command_execution",
"score_impact": 20,
"tags": [
"capability",
"execution",
"network"
]
},
{
"id": "dangerous_fs_write_tool",
"title": "Dangerous filesystem write tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that write files on disk are high risk.",
"category": "capability",
"risk_category": "file_system",
"score_impact": 20,
"tags": [
"capability",
"filesystem"
]
},
{
"id": "dangerous_fs_delete_tool",
"title": "Dangerous filesystem delete tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that delete files or directories are high risk.",
"category": "capability",
"risk_category": "file_system",
"score_impact": 20,
"tags": [
"capability",
"filesystem",
"destructive"
]
},
{
"id": "dangerous_http_request_tool",
"title": "Dangerous HTTP request tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that issue arbitrary HTTP requests are high risk.",
"category": "capability",
"risk_category": "network",
"score_impact": 20,
"tags": [
"capability",
"network",
"http"
]
},
{
"id": "dangerous_network_tool",
"title": "Dangerous network tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that expose generic network access are high risk.",
"category": "capability",
"risk_category": "network",
"score_impact": 20,
"tags": [
"capability",
"network"
]
},
{
"id": "write_tool_without_scope_hint",
"title": "Write tool without scope hint",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Filesystem mutation tools should document scope constraints clearly.",
"category": "capability",
"risk_category": "external_side_effects",
"score_impact": 10,
"tags": [
"capability",
"filesystem",
"scope"
]
},
{
"id": "tool_description_mentions_destructive_access",
"title": "Description mentions destructive access",
"bucket": "metadata",
"severity": "warning",
"rationale": "Tool descriptions should make destructive broad-scope access easy to spot.",
"category": "capability",
"risk_category": "external_side_effects",
"score_impact": 10,
"tags": [
"tools",
"description",
"destructive"
]
}
],
"findings": [
{
"check_id": "overly_generic_tool_name",
"title": "Overly generic tool name",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool names should communicate behavior clearly.",
"category": "tool-identity",
"risk_category": "metadata_hygiene",
"tool_name": "do_it",
"message": "Tool 'do_it' uses an overly generic name that hides its behavior.",
"evidence": [
"tool_name='do_it'"
],
"score_impact": 10,
"metadata": {}
},
{
"check_id": "vague_tool_description",
"title": "Vague tool description",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool descriptions should clearly explain what the tool does.",
"category": "tool-description",
"risk_category": "metadata_hygiene",
"tool_name": "do_it",
"message": "Tool 'do_it' uses a vague description that does not explain its behavior clearly.",
"evidence": [
"description='Helps with stuff.'",
"word_count=3",
"matched_phrase='helps with stuff'"
],
"score_impact": 10,
"metadata": {}
},
{
"check_id": "schema_allows_arbitrary_properties",
"title": "Schema allows arbitrary properties",
"bucket": "conformance",
"severity": "warning",
"rationale": "Tool input schemas should not allow arbitrary top-level properties.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"tool_name": "debug_payload",
"message": "Tool 'debug_payload' allows arbitrary additional input properties.",
"evidence": [
"additionalProperties=True",
"property_count=0"
],
"score_impact": 10,
"metadata": {}
},
{
"check_id": "weak_input_schema",
"title": "Weak input schema",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Tool input schemas should constrain free-form payloads clearly.",
"category": "input-schema",
"risk_category": "schema_hygiene",
"tool_name": "debug_payload",
"message": "Tool 'debug_payload' exposes a weak input schema that leaves free-form input underconstrained.",
"evidence": [
"matched_heuristic=inputful_tool_with_empty_object_schema"
],
"score_impact": 10,
"metadata": {}
},
{
"check_id": "dangerous_exec_tool",
"title": "Dangerous execution tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that execute host shell commands are high risk.",
"category": "capability",
"risk_category": "command_execution",
"tool_name": "exec_command",
"message": "Tool 'exec_command' appears to expose host command execution.",
"evidence": [
"name_markers=['exec', 'command']",
"description_markers=['execute', 'shell command', 'host machine']",
"input_keys=['command']"
],
"score_impact": 20,
"metadata": {}
},
{
"check_id": "dangerous_fs_write_tool",
"title": "Dangerous filesystem write tool",
"bucket": "security",
"severity": "error",
"rationale": "Tools that write files on disk are high risk.",
"category": "capability",
"risk_category": "file_system",
"tool_name": "write_file",
"message": "Tool 'write_file' appears to provide filesystem write access.",
"evidence": [
"write_markers=['write']",
"file_markers=['file', 'disk', 'path']",
"path_keys=['path']",
"content_keys=['content']"
],
"score_impact": 20,
"metadata": {}
},
{
"check_id": "write_tool_without_scope_hint",
"title": "Write tool without scope hint",
"bucket": "ergonomics",
"severity": "warning",
"rationale": "Filesystem mutation tools should document scope constraints clearly.",
"category": "capability",
"risk_category": "external_side_effects",
"tool_name": "write_file",
"message": "Tool 'write_file' modifies the filesystem without any visible scope hint.",
"evidence": [
"path_keys=['path']",
"scope_hint=<missing>"
],
"score_impact": 10,
"metadata": {}
}
],
"grouped_findings": {
"by_bucket": [
{
"bucket": "security",
"label": "security",
"finding_count": 2,
"penalty_points": 40,
"findings": [
{
"id": "dangerous_exec_tool",
"title": "Dangerous execution tool",
"severity": "error",
"bucket": "security",
"risk_category": "command_execution",
"tool_name": "exec_command",
"rationale": "Tools that execute host shell commands are high risk.",
"message": "Tool 'exec_command' appears to expose host command execution.",
"score_impact": 20
},
{
"id": "dangerous_fs_write_tool",
"title": "Dangerous filesystem write tool",
"severity": "error",
"bucket": "security",
"risk_category": "file_system",
"tool_name": "write_file",
"rationale": "Tools that write files on disk are high risk.",
"message": "Tool 'write_file' appears to provide filesystem write access.",
"score_impact": 20
}
]
},
{
"bucket": "ergonomics",
"label": "ergonomics",
"finding_count": 4,
"penalty_points": 40,
"findings": [
{
"id": "weak_input_schema",
"title": "Weak input schema",
"severity": "warning",
"bucket": "ergonomics",
"risk_category": "schema_hygiene",
"tool_name": "debug_payload",
"rationale": "Tool input schemas should constrain free-form payloads clearly.",
"message": "Tool 'debug_payload' exposes a weak input schema that leaves free-form input underconstrained.",
"score_impact": 10
},
{
"id": "overly_generic_tool_name",
"title": "Overly generic tool name",
"severity": "warning",
"bucket": "ergonomics",
"risk_category": "metadata_hygiene",
"tool_name": "do_it",
"rationale": "Tool names should communicate behavior clearly.",
"message": "Tool 'do_it' uses an overly generic name that hides its behavior.",
"score_impact": 10
},
{
"id": "vague_tool_description",
"title": "Vague tool description",
"severity": "warning",
"bucket": "ergonomics",
"risk_category": "metadata_hygiene",
"tool_name": "do_it",
"rationale": "Tool descriptions should clearly explain what the tool does.",
"message": "Tool 'do_it' uses a vague description that does not explain its behavior clearly.",
"score_impact": 10
},
{
"id": "write_tool_without_scope_hint",
"title": "Write tool without scope hint",
"severity": "warning",
"bucket": "ergonomics",
"risk_category": "external_side_effects",
"tool_name": "write_file",
"rationale": "Filesystem mutation tools should document scope constraints clearly.",
"message": "Tool 'write_file' modifies the filesystem without any visible scope hint.",
"score_impact": 10
}
]
},
{
"bucket": "conformance",
"label": "conformance",
"finding_count": 1,
"penalty_points": 10,
"findings": [
{
"id": "schema_allows_arbitrary_properties",
"title": "Schema allows arbitrary properties",
"severity": "warning",
"bucket": "conformance",
"risk_category": "schema_hygiene",
"tool_name": "debug_payload",
"rationale": "Tool input schemas should not allow arbitrary top-level properties.",
"message": "Tool 'debug_payload' allows arbitrary additional input properties.",
"score_impact": 10
}
]
}
]
},
"metadata": {}
}