Get started

Data & AI · wired today

What can agents actually do with Weaviate?

Models and datasets are infrastructure now, and agents need eyes on them. The Weaviate connector is one of 205 executable connectors and gives agents 6 read-only tools, with the credential held in the vault and every call receipted.

The Weaviate tool list, exactly as agents see it

  • meta — Get the Weaviate instance hostname, version and the vectorizer and other modules it has enabled
  • list_collections — List every collection (class) in the Weaviate schema with its vectorizer, vector index type and multi-tenancy setting
  • get_collection — Get one Weaviate collection (class) definition by name: its properties, vectorizer, vector index and sharding configuration
  • list_shards — List the shards of one Weaviate collection (class) with each shard's status
  • nodes — Get the status of every node in the Weaviate cluster: name, status, version, git hash and its shard and object counts
  • objects — List objects stored in one Weaviate collection (class) with their ids, creation times and properties

Every tool above is read-only. Write surfaces ship only after live testing, and always behind approval gates.

What the Weaviate connector needs

You provide host, API key from your Weaviate account; Quox sends it as a bearer token. The credential is stored encrypted in the vault and resolved just-in-time, so agents use it without ever seeing it.

Where to get it: Weaviate's own API documentation ↗ covers creating and scoping the credential.

How proven is this?

LIVE-PROVEN: every tool on this page was executed with real credentials against a real running Weaviate instance (provisioned for the proof, then destroyed), and every call answered successfully. The strongest proof class a connector can carry before it runs inside your own deployment.

Weaviate integration FAQ

What can Quox agents do with Weaviate?

Agents can run 6 read-only tools against Weaviate: meta, list collections, get collection, list shards, nodes and more. Every call is receipted in the evidence trail.

What does the Weaviate integration need?

You provide host, API key from your Weaviate account; Quox sends it as a bearer token. The credential is stored encrypted in the vault and resolved just-in-time, so agents use it without ever seeing it.

Do agents see my Weaviate credentials?

No. Credentials live encrypted in the Quox vault and are resolved server-side at call time. Agents invoke tools; they never receive the underlying secret.

How proven is the Weaviate connector?

LIVE-PROVEN: every tool on this page was executed with real credentials against a real running Weaviate instance (provisioned for the proof, then destroyed), and every call answered successfully. The strongest proof class a connector can carry before it runs inside your own deployment.