Skip to content
Connector marketplace

The marketplace for connectors.

Every connector is a VGI worker that exposes a real system as SQL tables and functions. Subscribe, then attach it from DuckDB or Haybarn with one line of SQL.

How it works

Subscribe, then attach

The Orchard adds the marketplace around VGI workers: discovery, subscriptions, credentials, and one consistent way to attach. Bring the connectors you need; leave the plumbing to the worker.

1

Browse the catalog

Find a connector or worker that exposes the system you need — streaming, email, governance, federation, or public data.

2

Subscribe

Pick a plan and get a token. Free connectors attach with no token at all; paid ones bill per worker.

3

Attach from SQL

ATTACH the worker in DuckDB or Haybarn and query its tables and functions like any other catalog.

attach.sql
-- once per session
INSTALL vgi FROM community;
LOAD vgi;

-- attach a subscribed connector as a SQL catalog
ATTACH 'kafka' AS kafka (
  TYPE vgi,
  LOCATION 'https://orchard.query.farm/kafka'
);

SELECT * FROM kafka.topics;

Free connectors skip the token entirely — just ATTACH and query. How subscriptions work →

For teams

Subscribe to a connector

Pick a plan, get a token, and attach. Free connectors need no token; paid connectors bill per worker with no infrastructure to run yourself.

How subscriptions work →
For builders

Publish your own

Built a VGI worker? List it on the Orchard, set your pricing, and let teams discover and subscribe to it with the same one-line attach.

Get listed →

Need a connector that isn't here yet?

We build VGI connectors for the systems your team depends on — and we can publish them on the Orchard for you.