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_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Weaviate CLIHeadless setup and direct function calls. Weaviate MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Weaviate MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Weaviate.
Claude Code Weaviate MCP setup for Claude Code. Cursor Weaviate MCP setup for Cursor. Codex Weaviate MCP setup for Codex. OpenAI Agents Weaviate MCP setup for OpenAI Agents SDK. Claude Agent SDK Weaviate MCP setup for Claude Agent SDK. Vercel AI SDK Weaviate MCP setup for Vercel AI SDK. LangChain Weaviate MCP setup for LangChain. LangGraph Weaviate MCP setup for LangGraph. CrewAI Weaviate MCP setup for CrewAI. MCP clients Weaviate MCP setup for Generic MCP Clients.
Weaviate CLI Matrix
Use these pages for direct Weaviate CLI workflows in scripts, CI, cron, and agent wrappers.
CI Weaviate CLI for CI. Cron Jobs Weaviate CLI for cron jobs. Shell Scripts Weaviate CLI for shell scripts. Headless Automation Weaviate CLI for headless automation. Coding Agents Weaviate CLI for coding agents.
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. |