Skip to main content

Restore Snapshot

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTqdrant.qdrant-restore-snapshot

Restore a collection snapshot (admin-only, confirm required).

Request Body

{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-restore-snapshot-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-restore-snapshot",
"arguments": {
"collection_name": "collection_name_example",
"snapshot_location": "snapshot_location_example",
"snapshot_checksum": "",
"api_key": "",
"wait": false,
"priority": "",
"confirm": false
}
}
}

Arguments Schema

{
"properties": {
"collection_name": {
"type": "string"
},
"snapshot_location": {
"type": "string"
},
"snapshot_checksum": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"wait": {
"type": "boolean"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"confirm": {
"type": "boolean"
}
},
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-restore-snapshot-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-restore-snapshot",
"arguments": {
"collection_name": "collection_name_example",
"snapshot_location": "snapshot_location_example",
"snapshot_checksum": "",
"api_key": "",
"wait": false,
"priority": "",
"confirm": false
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool qdrant.qdrant-restore-snapshot executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}