Zilliz Plugin Setup
This guide provides multiple methods for integrating Zilliz Plugins into your LLM Agent-powered workflows.
Prerequisites
- You have already installed Claude Code.
Run Claude Code
> claude
Add the Zilliz Plugin marketplace.
/plugin marketplace add zilliztech/zilliz-plugin
Install the plugin
/plugin install zilliz@zilliztech/zilliz-plugin
Initial Setup
After installation, run the quickstart wizard:
/zilliz:setup
The wizard will guide you through:
Install Zilliz CLI.
The plugin requires the Zilliz CLI. If not installed, run:
pip install zilliz-cli
Verify installation:
zilliz --version
Authenticate.
Authenticate with your Zilliz Cloud account:
zilliz auth login
This opens a browser for authentication. After login, your credentials are stored locally.
Connect to your cluster.
Configure your default cluster connection:
zilliz context set --cluster-id <your-cluster-id>
Or let the plugin help you select from available clusters.
Verification
Test the plugin with a simple command:
You: "List my clusters"
The plugin should display your Zilliz Cloud clusters.
Troubleshooting
-
Plugin shows "CLI not found"
Solution: Install the Zilliz CLI:
pip install zilliz-cli -
Authentication fails
Solution:
-
Check your internet connection
-
Verify your Zilliz Cloud account is active
-
Try logging out and back in:
zilliz auth logout
zilliz auth login -
-
"No cluster configured"
Solution: Set a default cluster:
zilliz context set --cluster-id <cluster-id>