Skip to main content

Update Point

Snapshot Catalog Entry

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

POSTqdrant.qdrant-update-point

Update an existing point (re-embeds content).

Request Body

{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-update-point-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-update-point",
"arguments": {
"point_id": "point_id_123",
"information": "information_example",
"collection_name": "collection_name_example",
"metadata": ""
}
}
}

Arguments Schema

{
"properties": {
"point_id": {
"type": "string"
},
"information": {
"type": "string"
},
"collection_name": {
"type": "string"
},
"metadata": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
]
}
},
"required": [
"point_id",
"information",
"collection_name"
],
"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-update-point-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-update-point",
"arguments": {
"point_id": "point_id_123",
"information": "information_example",
"collection_name": "collection_name_example",
"metadata": ""
}
}
}'

Example Responses

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