KosmoKrator

data

Milvus MCP, CLI, and Lua Integration for AI Agents

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

7 functions 5 read 2 write API key auth

Milvus 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
milvus
route_slug
milvus
package
milvus
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

Milvus MCP Client Matrix

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

Milvus CLI Matrix

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

Function Catalog

FunctionTypeParametersDescription
milvus.milvus_list_collections Read read 2 List all vector collections in Milvus. Returns collection names and details that can be used for further operations.
milvus.milvus_get_collection Read read 1 Get details of a specific Milvus collection by its name, including schema and description.
milvus.milvus_create_collection Write write 4 Create a new vector collection in Milvus. A collection requires a name and the embedding dimension size.
milvus.milvus_insert_documents Write write 2 Insert documents with embedding vectors into a Milvus collection. Each document requires a vector and an optional ID.
milvus.milvus_search_documents Read read 5 Search for similar documents in a Milvus collection using a query vector. Returns the most similar documents ranked by distance or similarity.
milvus.milvus_get_collection_stats Read read 1 Get statistics for a Milvus collection, including row count and index information.
milvus.milvus_get_health Read read 0 Check the health status of the Milvus vector database server. Returns health and version information.