KosmoKrator

other

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.

7 functions 5 read 2 write API key auth

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.

Machine-Readable Metadata
integration_slug
weaviate
route_slug
weaviate
package
weaviate
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

Weaviate MCP Client Matrix

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

Weaviate CLI Matrix

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

Function Catalog

FunctionTypeParametersDescription
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.