data
Weaviate MCP, CLI, and Lua Integration for AI Agents
Weaviate integration docs for AI agents: MCP gateway setup, Weaviate CLI commands, Lua API reference, credentials, and function schemas.Weaviate 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.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
weaviate.weaviate_list_schemas | Read read | 0 | List all schemas (collections/classes) defined in the Weaviate instance. Returns the full schema including all classes and their properties. |
weaviate.weaviate_get_schema | Read read | 1 | Get the schema definition for a specific class (collection) in Weaviate. Returns the class name, properties, vectorizer config, and module settings. |
weaviate.weaviate_create_class | Write write | 1 | Create a new class (collection) in the Weaviate schema. Provide a class definition with the class name and an array of property definitions (name, dataType, etc.). |
weaviate.weaviate_search_objects | Read read | 1 | Search and query objects in Weaviate using GraphQL. Supports Get, Aggregate, and Explore queries with filters, sorting, and vector/nearVector/nearText search. |
weaviate.weaviate_create_object | Write write | 3 | Create a new data object in a Weaviate class. Provide the class name and a properties object with the data fields. Optionally specify a UUID for the object. |
weaviate.weaviate_get_object | Read read | 2 | Retrieve a specific data object from Weaviate by its class name and UUID. Returns the full object including all properties and metadata. |
weaviate.weaviate_get_health | Read read | 0 | Check the health and liveness of the Weaviate instance. Returns a status indicating whether the service is alive and responsive. |