Skip to main content
PluginDefault onproviders/ (on-disk specs)

Plugins hub · Registry reference

Bundled providers

Bundled providers are on-disk OpenAPI / Discovery / GraphQL specs under providers/. They power search and execute — they are not MCP plugins and have no Plugin.onRegister hook.

Think of this as the framework vs library install model: an opinionated default stack with escape hatches.

Default install (no spec env)

Fresh install with no CLAWQL_* spec variables loads the opinionated default stack:

ProviderNotes
CloudflareEdge/DNS/Workers APIs
GitHubREST automation
SlackWeb API (powers optional notify when enabled)
LinearBundled GraphQL-only vendor
NotionOfficial REST OpenAPI
OnyxEnterprise search spec (pair with CLAWQL_ENABLE_ONYX=1 for MCP search tool)

Cloud add-ons (default stack only)

EnvEffect
CLAWQL_ENABLE_GOOGLE=1Add Google Cloud top-50 Discovery merge to default stack
CLAWQL_ENABLE_AWS=1Add AWS top-50 OpenAPI merge (SigV4 via execute)
CLAWQL_ENABLE_CLOUDFLARE=0Omit Cloudflare from default stack

These flags do not gate all-providers.

Presets

CLAWQL_PROVIDERBehavior
default / default-providersSame as no-config install (+ cloud add-ons above)
all-providersLiterally every bundled vendor + Google top-50 + AWS top-50
google, aws, atlassianFocused merged presets
CLAWQL_BUNDLED_PROVIDERS=a,b,…Custom explicit subset

Only CLAWQL_ENABLE_DOCUMENTS=0 trims the document/IDP vendor set from all-providers.

Precedence

  1. CLAWQL_SPEC_PATHS
  2. CLAWQL_BUNDLED_PROVIDERS
  3. CLAWQL_PROVIDER (merged preset)
  4. Default bundled stack (when nothing else is set)

Single-spec mode (CLAWQL_SPEC_PATH, CLAWQL_PROVIDER=cloudflare, …) bypasses the merge rules above.

Learn more