Soar AI Labs
PrivacyTermsSupportStatus
© 2025 Soar AI Labs. Making your git life easier.
Soar AI Labs
Soar AI Labs
Getting Started
ConfigurationInstallation Guide
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 uv package 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:

Install MCP Server

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"]
  }
}

Next Steps

  • Configuration
  • API Overview

Configuration

Configure Glide MCP for your project

On this page

PrerequisitesInstallation MethodsCursorClaude CodeVS CodeNext Steps