CLI
fh add
Print connector implementation recipes.
fabric-harness add [connector] [--print]fh add lists or prints implementation recipes for sandbox, MCP, knowledge-base, and data connectors. Some connectors also have package-level helpers in @fabric-harness/connectors, @fabric-harness/azure, or @fabric-harness/databricks; recipes are for project-local wiring, provider SDK quirks, or custom lifecycle/auth code.
Examples
List available recipes
fh addPrint a connector recipe
fh add daytona --print
fh add e2b --printFor sandbox connectors, the output demonstrates the RemoteSandboxApi / SandboxEnv adapter pattern. For MCP, KB, and data connectors, it demonstrates the appropriate public primitive: connectMcpServer, FilesystemSource, scoped Command, or ToolDef.
Categories
fh add https://provider.example/docs --category sandbox --print
fh add https://provider.example/docs --category mcp --print
fh add https://provider.example/docs --category kb --print
fh add https://provider.example/docs --category data --print| Category | Output shape |
|---|---|
sandbox | SandboxEnv / SandboxFactory |
mcp | connectMcpServer() wrapper |
kb | FilesystemSource |
data | ToolDef, Command, or MCP wrapper |
Package helpers
Prefer package helpers when available:
@fabric-harness/connectors: Daytona, E2B, Modal, generic remote sandbox, S3, Azure Blob.@fabric-harness/azure: Azure OpenAI, Key Vault, Blob artifacts, Foundry Agent Service, Azure ARM tools.@fabric-harness/databricks: SQL, Jobs, notebooks, Unity Catalog, MLflow, workspace source.
See also
- Connector catalog
- Sandbox connectors
- Capability matrix — which connectors are first-class today.