Skip to main content
Glama

Qdrant Retrieve MCP Server

QdrantRetrieveOutputSchema.ts776 B
import { z } from "zod"; /** * MCP tool output format for Qdrant Retrieve JSON responses */ export type QdrantRetrieveOutput = { /** Array of retrieved documents with similarity scores */ results: Array<{ /** The query that produced this result */ query: string; /** Collection name that this result came from */ collectionName: string; /** Document text content */ text: string; /** Similarity score between 0 and 1 */ score: number; }>; }; /** * Schema for validating Qdrant Retrieve tool JSON output */ export const QdrantRetrieveOutputSchema = z.object({ results: z.array( z.object({ query: z.string(), collectionName: z.string(), text: z.string(), score: z.number().min(0).max(1), }) ), });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gergelyszerovay/mcp-server-qdrant-retrive'

If you have feedback or need assistance with the MCP directory API, please join our Discord server