Getting Started
This guide will help you set up Weaviate Studio and connect to your first Weaviate instance.
Prerequisites
- VS Code (version 1.80.0 or later)
- A running Weaviate instance (local, on-prem, or cloud)
- Docker (optional — for the local sandbox)
Installation
- Open VS Code
- Go to the Extensions panel (
Ctrl+Shift+X/Cmd+Shift+X) - Search for "Weaviate Studio"
- Click Install
Or install from the command line:
bash
code --install-extension prasadmuley.weaviate-studioOther Editors
Weaviate Studio also works in Cursor, Windsurf, and VSCodium. Install from Open VSX.
Connecting to Weaviate
- Click the Weaviate icon in the Activity Bar (sidebar)
- Click "Add New Weaviate Connection"
- Fill in your connection details:
- Name: A friendly name (e.g., "Production", "Local Dev")
- Endpoint Type: Cloud or Custom
- URL: Your Weaviate instance URL (e.g.,
http://localhost:8080) - API Key: Your authentication key (required for Cloud)
- Click Save and Connect
Once connected, you'll see your Weaviate instance in the sidebar with its collections, nodes, and management options.
Your First Query
- Right-click a collection in the sidebar
- Select "Open Query Editor"
- Choose a query template from the dropdown
- Click Run Query (or press
Ctrl+Enter)
graphql
{
Get {
YourCollection(limit: 10) {
_additional {
id
}
}
}
}What's Next?
- Explore your data with the interactive data browser
- Try Generative Search for AI-powered queries
- Run the local sandbox for a quick test environment
- Browse the full feature list
