Qdrant Document Fetch Tool
fetchRetrieve complete document content from Qdrant by point ID. Supports single or batch fetch with optional client-side ordering by payload key.
Instructions
Retrieve complete document content from Qdrant by point ID. Supports single document fetch or batch fetch with optional client-side ordering by payload key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order_by | No | Optional payload key to sort batch results by (client-side) | |
| point_id | Yes | Primary point identifier (UUID or string ID) | |
| point_ids | No | Optional additional point IDs to fetch in batch | |
| order_direction | No | "asc" (default) or "desc" for batch ordering | asc |
| user_google_email | No | Use 'me' or 'myself' for auto-resolution to authenticated user, or provide specific email address. If None, uses current authenticated user (auto-injected by middleware). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Point ID | |
| url | Yes | qdrant:// URL for this document | |
| text | Yes | Full document text content | |
| error | No | Error message if fetch failed | |
| found | Yes | Whether the document was found | |
| title | Yes | Document title | |
| metadata | Yes | Document metadata | |
| collection_name | Yes | Qdrant collection name |