Skip to main content

Ingest With Validation

Snapshot Catalog Entry

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

POSTqdrant.qdrant-ingest-with-validation

Store memory with contract validation and quarantine support.

Request Body

{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-ingest-with-validation-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-ingest-with-validation",
"arguments": {
"information": "information_example",
"collection_name": "collection_name_example",
"metadata": "",
"dedupe_action": "",
"on_invalid": "",
"quarantine_collection": ""
}
}
}

Arguments Schema

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

Example Responses

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