-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMCP_STRESS_TEST_MANIFEST.json
More file actions
41 lines (41 loc) · 963 Bytes
/
Copy pathMCP_STRESS_TEST_MANIFEST.json
File metadata and controls
41 lines (41 loc) · 963 Bytes
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
{
"schema_version": "1.0",
"description": "Repeatable read-only MCP pricing checks. Tool arguments must match the registered MCP schemas exactly.",
"cases": [
{
"id": "digikey-current-pricing",
"tool": "get_product_pricing",
"arguments": {
"product_number": "LM358DR2GOSCT-ND",
"exclude_tariff": false
},
"forbidden_arguments": [
"requested_quantity"
],
"assertions": [
{
"path": "SettingsUsed.ExcludeTariff",
"equals": false
},
{
"path": "_meta.http_status",
"equals": 200
}
]
},
{
"id": "digikey-quantity-pricing-15",
"tool": "get_pricing_by_quantity",
"arguments": {
"product_number": "LM358DR2GOSCT-ND",
"requested_quantity": 15
},
"assertions": [
{
"path": "_meta.http_status",
"equals": 200
}
]
}
]
}