Skip to main content
Glama

Qdrant Retrieve MCP Server

createQdrantRetrieveMcpTool.ts1.06 kB
import type { McpTool } from "@shared/mcp-tool/McpTool"; import { QdrantRetrieveInputSchema } from "./internal/QdrantRetrieveInputSchema"; import { QdrantRetrieveOutputSchema } from "./internal/QdrantRetrieveOutputSchema"; import { qdrantRetrieveMcpToolHandler } from "./internal/qdrantRetrieveMcpToolHandler"; /** * Creates and returns the Qdrant Retrieve MCP tool configuration * * @returns Array containing the Qdrant Retrieve MCP tool configuration */ export function createQdrantRetrieveMcpTool(): McpTool[] { return [ { name: "qdrant_retrieve", description: "Retrieves semantically similar documents from multiple Qdrant vector store collections based on multiple queries", inputSchema: QdrantRetrieveInputSchema, inputSchemaName: "QdrantRetrieveInputSchema", outputTypes: ["text", "json"], outputSchema: QdrantRetrieveOutputSchema, outputSchemaName: "QdrantRetrieveOutputSchema", handler: qdrantRetrieveMcpToolHandler, enabledInModes: ["rest", "mcpAct", "mcpPlan"], }, ]; }

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