Guides
Installation Guide
Learn how to install Glide MCP on your system
Prerequisites
Before installing Glide MCP, make sure you have the following:
- Python 3.13+ and
uvpackage manager - Git installed and configured
- Ollama installed locally (required for merge conflict resolution)
- Install: https://ollama.ai
- Pull the model:
ollama pull hf.co/SoarAILabs/breeze-3b:Q4_K_M
Installation Methods
You can install Glide MCP in your favorite editor.
Cursor
The easiest way to install Glide in Cursor is using the one-click install button:
Claude Code
To add Glide to Claude Code, run the following command in your terminal:
claude mcp add --transport stdio glide-mcp --env VOYAGEAI_API_KEY= --env HELIX_API_ENDPOINT= --env CEREBRAS_API_KEY= --env CEREBRAS_MODEL_ID=qwen-3-32b --env HELIX_LOCAL= --env MORPHLLM_API_KEY= -- uvx --from "git+https://github.com/SoarAILabs/glide.git" "glide"VS Code
For VS Code, you can add the following configuration to your mcp.json file:
{
"glide-mcp": {
"env": {
"VOYAGEAI_API_KEY": "",
"HELIX_API_ENDPOINT": "",
"CEREBRAS_API_KEY": "",
"CEREBRAS_MODEL_ID": "qwen-3-32b",
"HELIX_LOCAL": "False",
"MORPHLLM_API_KEY": ""
},
"command": "uvx",
"args": ["--from", "git+https://github.com/SoarAILabs/glide.git", "glide"]
}
}