KosmoKrator

database

Qdrant MCP, CLI, and Lua Integration for AI Agents

Qdrant integration docs for AI agents: MCP gateway setup, Qdrant CLI commands, Lua API reference, credentials, and function schemas.

6 functions 4 read 2 write API key auth

Qdrant for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Machine-Readable Metadata
integration_slug
qdrant
route_slug
qdrant
package
qdrant
auth_strategy
api_key API key
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Qdrant MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Qdrant.

Qdrant CLI Matrix

Use these pages for direct Qdrant CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
qdrant.qdrant_list_collections Read read 0 List all vector collections in the Qdrant cluster. Returns collection names and basic metadata.
qdrant.qdrant_get_collection Read read 1 Get detailed information about a specific Qdrant collection, including vector configuration, index status, and point count.
qdrant.qdrant_create_collection Write write 7 Create a new vector collection in Qdrant. You must specify the vector configuration (size, distance metric). Optionally provide HNSW, quantization, and optimization settings.
qdrant.qdrant_search Read read 9 Search for the closest vectors in a Qdrant collection. Supports vector similarity search with optional filtering, payload selection, and scoring.
qdrant.qdrant_upsert_points Write write 4 Insert or update points (vectors with optional payloads) in a Qdrant collection. Each point requires an ID and a vector. Payloads are optional metadata.
qdrant.qdrant_get_current_user Read read 0 Get information about the Qdrant cluster, including cluster status, node information, and the authenticated user context.