Skip to main content

Promote Short Term

Snapshot Catalog Entry

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

POSTqdrant.qdrant-promote-short-term

Promote short-term memories into the long-term collection.

Request Body

{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-promote-short-term-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-promote-short-term",
"arguments": {
"point_ids": [],
"source_collection": "",
"target_collection": "",
"metadata_patch": "",
"clear_ttl": false,
"remove_source": false
}
}
}

Arguments Schema

{
"properties": {
"point_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"source_collection": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"target_collection": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"metadata_patch": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
]
},
"clear_ttl": {
"type": "boolean"
},
"remove_source": {
"type": "boolean"
}
},
"required": [
"point_ids"
],
"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-promote-short-term-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-promote-short-term",
"arguments": {
"point_ids": [],
"source_collection": "",
"target_collection": "",
"metadata_patch": "",
"clear_ttl": false,
"remove_source": false
}
}
}'

Example Responses

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