SO
Docs

Read the source.

We host the docs on GitHub so they version with the code. Pick a starting point:

Quickstart

# Clone + install
git clone https://github.com/squareonestudio/millwork-mcp
cd millwork-mcp
pip install -e ".[dev,webapp]"

# Seed demo data
python scripts/seed_demo_data.py --force

# Mode 1: MCP server (stdio for Claude Desktop)
python server.py

# Mode 2: REST API (FastAPI, multi-tenant)
SQONE_DEV_AUTH=1 squareone-api
# OpenAPI docs at http://localhost:8000/docs

# Mode 3: docker-compose (production-like)
cp .env.example .env
docker compose up -d --build