Guides
Configuration
Configure Glide MCP for your project
Environment Variables
Glide is configured using environment variables. You can set these in your MCP client configuration (like mcp.json or Cursor settings).
Required Variables
| Variable | Description |
|---|---|
VOYAGEAI_API_KEY | API key for Voyage AI (used for embeddings). |
HELIX_API_ENDPOINT | Endpoint for the Helix API. See Getting Access. |
CEREBRAS_API_KEY | API key for Cerebras inference. |
MORPHLLM_API_KEY | API key for MorphLLM (used for applying code edits). |
Optional Variables
| Variable | Description | Default |
|---|---|---|
CEREBRAS_MODEL_ID | The model ID to use for Cerebras. | qwen-3-32b |
HELIX_LOCAL | Set to True to use a local Helix instance. | False |
Getting Access
Some features (Helix) require API keys that are currently in closed beta.
- Access Request: Contact us for access at
bilwarad@mail.uc.eduor on Discord:- Amaan:
amaanwastaken - Ani:
aniruddg - Vish:
vishesh.1301
- Amaan:
Example Configuration
Here is an example of how the environment variables look in a JSON configuration:
"env": {
"VOYAGEAI_API_KEY": "your_voyage_key",
"HELIX_API_ENDPOINT": "your_helix_endpoint",
"CEREBRAS_API_KEY": "your_cerebras_key",
"CEREBRAS_MODEL_ID": "qwen-3-32b",
"HELIX_LOCAL": "False",
"MORPHLLM_API_KEY": "your_morphllm_key"
}