Skip to main content

Get Ingest Status

Catalog + Curated

This page is generated from the full broker catalog and enhanced with curated examples.

GETqdrant.qdrant-get-ingest-status

Get status, stage, and diagnostics for an async textbook ingest job.

Request Body

{
"jsonrpc": "2.0",
"id": "qdrant-qdrant-get-ingest-status-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-get-ingest-status",
"arguments": {
"job_id": "ingest_tb_01JQDRANTP8X3B4H"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"job_id"
],
"properties": {
"job_id": {
"type": "string"
}
},
"additionalProperties": false
}

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-get-ingest-status-example",
"method": "tools/call",
"params": {
"name": "qdrant.qdrant-get-ingest-status",
"arguments": {
"job_id": "ingest_tb_01JQDRANTP8X3B4H"
}
}
}'

Example Responses

{
"ok": true,
"job_id": "ingest_tb_01JQDRANTP8X3B4H",
"status": "running",
"stage": "embedding",
"progress": {
"pages_processed": 74,
"chunks_written": 512
},
"server_instance_id": "qdrant-mcp-01",
"server_uptime_ms": 842301
}