Garage Support & User Guide

Welcome to the comprehensive support guide for Garage. This guide covers system requirements, installation, source management, model configuration, MCP server integrations, and database operations.


Table of Contents

  1. System Requirements
  2. Getting Started
  3. Managing Sources & Ingestion
  4. Embedding Models & Providers
  5. Model Context Protocol (MCP) Integration
  6. macOS Permissions & TCC
  7. Database Backup, Restore & Reset

1. System Requirements


2. Getting Started

Native macOS Application (GarageApp)

GarageApp provides a menu bar utility and management window that bundles an embedded, relocatable instance of PostgreSQL 18 with pgvector:

  1. Launch GarageApp: The app initializes its private database in ~/Library/Group Containers/DWVXMLB45Y.group.me.rickmark.garage-rag/Library/Application Support/GarageApp/pgdata on port 14824. A strong SCRAM superuser password is automatically generated and securely stored in your macOS Keychain.
  2. Menu Bar Status: Look for the Garage icon in your macOS menu bar. A green status indicator confirms that PostgreSQL and the local MCP HTTP service are active.
  3. Open Management Window: Click the menu bar icon and select Open Garage to view Sources, Models, Logs, and Search.

Command Line Interface (garage)

For automated pipelines or terminal workflows, the garage CLI communicates with the database:

# Initialize local configuration in ~/.garage.json
garage config init

# Initialize the schema and pgvector extension
garage init-db

# Check status and document count
garage stats

3. Managing Sources & Ingestion

Garage indexes your local files, codebases, notes, and messages into a unified vector corpus.

Corpus Classes & Trust Tiers

Every source is categorized to protect privacy and enable precise retrieval filtering:

Adding Sources

# Add a personal notes directory as authored content
garage add-source notes ~/Documents/Notes --class document --trust authored

# Add a Git repository (authorship is detected per-commit automatically)
garage add-source my-repo ~/Projects/my-repo --class code

# Add Apple Messages database (requires Full Disk Access)
garage add-source imessage ~/Library/Messages --class communication

# Run ingestion to parse files into text chunks
garage ingest

4. Embedding Models & Providers

Garage supports multiple embedding models simultaneously without re-parsing raw files.

Ollama Configuration

  1. Install and start Ollama:
    ollama pull bge-m3
    
  2. Register and set bge-m3 as the default model:
    garage register-model bge-m3 --provider ollama --dims 1024
    garage set-default-model bge-m3
    
  3. Generate vector embeddings for all indexed chunks:
    garage backfill
    

LM Studio Configuration

  1. In LM Studio, load an embedding model (e.g., nomic-ai/nomic-embed-text-v1.5-GGUF) and start the local server on http://127.0.0.1:1234.
  2. In GarageApp under the Models tab, select LM Studio as the provider and optionally store your LM Studio API token in the macOS Keychain.
  3. Via CLI:
    garage register-model nomic-embed-text --provider lmstudio --dims 768
    garage backfill
    

5. Model Context Protocol (MCP) Integration

Garage implements the Model Context Protocol (MCP) 2.0, allowing AI assistants to query your local knowledge base.

Claude Desktop Integration

Install the Garage MCP tool directly into your Claude Desktop configuration:

garage mcp-install --target claude-desktop

This updates ~/Library/Application Support/Claude/claude_desktop_config.json with the required command and database connection environment. Restart Claude Desktop to start searching your notes and code directly from Claude!

Claude Code Integration

Register Garage with Claude Code:

garage mcp-install --target claude-code-user

HTTP MCP Endpoint

GarageApp automatically hosts a loopback HTTP MCP server at: http://127.0.0.1:8787/mcp

🔒 Security Notice

The HTTP MCP server strictly binds to 127.0.0.1 with built-in DNS-rebinding protection and host validation. It will refuse remote bindings to protect your personal data.


6. macOS Permissions & TCC

When indexing Apple Messages (~/Library/Messages) or Apple Mail (~/Library/Mail), macOS Transparency, Consent, and Control (TCC) requires explicit permission.

Granting Full Disk Access

  1. Open System Settings on your Mac.
  2. Navigate to Privacy & Security → Full Disk Access.
  3. Click the + button and add GarageApp (or your Terminal app if running via CLI).
  4. Toggle the switch to On.
  5. Restart GarageApp or run garage ingest again.

7. Database Backup, Restore & Reset

Backup & Restore


Need additional assistance?

If you encounter unexpected errors or need further diagnosis, check out the Troubleshooting Guide or open an issue on GitHub.