Installing Connectors
Connectors teach Max how to sync from a specific data source. They’re distributed as collections - packages that bundle multiple connectors together.
Installing a collection
max install --collection git@github.com:max-hq/max-connectors.gitThis clones the collection repository to ~/.max/collections/<name>/ and makes its connectors available across all your workspaces. The collection name is derived from the repository name (e.g., max-connectors).
If the collection is already installed, Max pulls the latest version instead of cloning again.
What gets installed
A collection is a directory (or repository) containing one or more connector-* subdirectories. Each subdirectory is a connector package. After installation, Max discovers these connectors and makes them available to max connect.
Collections are stored globally at ~/.max/collections/:
~/.max/collections/└── max-connectors/ ├── connector-linear/ ├── connector-github/ ├── connector-google-drive/ └── ...Discovering connectors
There is currently no command to list all available connectors. You can inspect the collection directory directly:
ls ~/.max/collections/max-connectors/# connector-linear/ connector-github/ connector-google-drive/ ...To see what entity types a connector provides before connecting it:
max schema @max/connector-linearUpdating
Re-run the install command to pull the latest version of a collection:
max install --collection git@github.com:max-hq/max-connectors.gitIf the collection was previously cloned, this runs git pull to update it.
Local development
When developing connectors locally, you can link a directory instead of cloning:
max install --collection /path/to/local/connectorsThis creates a symlink from ~/.max/collections/<name>/ to your local directory. Changes to the local directory are picked up immediately - no need to reinstall.
If a clone of the same collection already exists, the symlink replaces it.
What’s next
- Getting Started - connect a source and run your first sync
- CLI Overview - the full command hierarchy