2026-02-04 23:01:37 -05:00

159 lines
4.0 KiB
JSON

{
"server": {
"command": "node",
"args": [
"/Users/jakeshore/.clawdbot/workspace/mcp-diagrams/mcp-servers/squarespace/dist/index.js"
],
"env": {
"SQUARESPACE_API_KEY": "factory_discovery_dummy"
}
},
"tests": {
"tools": {
"list_pages": {
"args": {
"cursor": "test_value"
},
"expect": "content && content.length > 0"
},
"list_pages:empty-cursor": {
"args": {
"cursor": ""
},
"expect": "exists"
},
"get_page": {
"args": {
"pageId": "test-id-123"
},
"expect": "content && content.length > 0"
},
"list_products": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"type": "test_value"
},
"expect": "content && content.length > 0"
},
"list_products:empty-cursor": {
"args": {
"cursor": "",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"type": "test_value"
},
"expect": "exists"
},
"list_products:empty-modifiedAfter": {
"args": {
"cursor": "test_value",
"modifiedAfter": "",
"modifiedBefore": "test_value",
"type": "test_value"
},
"expect": "exists"
},
"list_products:empty-modifiedBefore": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "",
"type": "test_value"
},
"expect": "exists"
},
"list_products:empty-type": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"type": ""
},
"expect": "exists"
},
"get_product": {
"args": {
"productId": "test-id-123"
},
"expect": "content && content.length > 0"
},
"list_orders": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"fulfillmentStatus": "test_value"
},
"expect": "content && content.length > 0"
},
"list_orders:empty-cursor": {
"args": {
"cursor": "",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"fulfillmentStatus": "test_value"
},
"expect": "exists"
},
"list_orders:empty-modifiedAfter": {
"args": {
"cursor": "test_value",
"modifiedAfter": "",
"modifiedBefore": "test_value",
"fulfillmentStatus": "test_value"
},
"expect": "exists"
},
"list_orders:empty-modifiedBefore": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "",
"fulfillmentStatus": "test_value"
},
"expect": "exists"
},
"list_orders:empty-fulfillmentStatus": {
"args": {
"cursor": "test_value",
"modifiedAfter": "test_value",
"modifiedBefore": "test_value",
"fulfillmentStatus": ""
},
"expect": "exists"
},
"get_order": {
"args": {
"orderId": "test-id-123"
},
"expect": "content && content.length > 0"
},
"list_inventory": {
"args": {
"cursor": "test_value"
},
"expect": "content && content.length > 0"
},
"list_inventory:empty-cursor": {
"args": {
"cursor": ""
},
"expect": "exists"
},
"update_inventory": {
"args": {
"variantId": "test-id-123",
"quantity": 50,
"quantityDelta": 50,
"isUnlimited": true
},
"expect": "content && content.length > 0"
}
},
"resources": {},
"prompts": {},
"timeout": 30000
}
}