Skip to content

Connectors catalog

Wicket supports 16 connectors. Each one proxies a hosted MCP server, carries a tool catalog grouped into read / write / destructive tiers, and authenticates members via OAuth.

The catalog

ConnectorNamespaceTools (read / write / destructive)OAuth setupExtras
GitHubGitHubMCP43 (26 / 13 / 4)Your OAuth app or GitHub AppEntity harvesting, webhooks, GitHub App mode, resource conditions
LinearLinearMCP35 (24 / 9 / 2)Your OAuth appEntity harvesting, webhooks, resource conditions
CloudflareCloudflareMCP25 (14 / 6 / 5)Managed by WicketEntity harvesting
SentrySentryMCP22 (17 / 5 / 0)Managed by WicketEntity harvesting, webhooks
AtlassianAtlassianMCP19 (13 / 6 / 0)Your OAuth appEntity harvesting, webhooks, Jira + Confluence scopes
StripeStripeMCP18 (11 / 5 / 2)Your OAuth appEntity harvesting, webhooks
SupabaseSupabaseMCP16 (9 / 4 / 3)Your OAuth appEntity harvesting
PlanetScalePlanetScaleMCP16 (15 / 0 / 1)Your OAuth appEntity harvesting
SlackSlackMCP15 (8 / 6 / 1)Your OAuth appEntity harvesting, webhooks, channel restrictions
AirtableAirtableMCP15 (5 / 8 / 2)Your OAuth appEntity harvesting, webhooks
NotionNotionMCP14 (5 / 8 / 1)Your OAuth appEntity harvesting, webhooks
GoogleGoogleMCP14 (8 / 6 / 0)Managed by WicketEntity harvesting
HubSpotHubSpotMCP11 (11 / 0 / 0)Your OAuth appEntity harvesting, webhooks, read-only catalog
VercelVercelMCP9 (9 / 0 / 0)Your OAuth appEntity harvesting, webhooks, resource conditions
Hugging FaceHuggingFaceMCP5 (5 / 0 / 0)Your OAuth appEntity harvesting, webhooks
ProwlerProwlerMCP4 (3 / 1 / 0)Your OAuth app

281 tools across the catalog. Exact tool names and tiers are listed in the dashboard’s policy builder (grouped by tier) and via GET /api/tools/catalog.

OAuth setup column, explained

  • Managed by Wicket — works out of the box. Members click Connect and complete the provider’s OAuth flow; no configuration needed.
  • Your OAuth app — the agent owner registers an OAuth app with the provider once and enters its client ID and secret in the agent’s connector settings. Members then connect with one click. See Connect a connector for the walkthrough and the redirect URL to use.

Tool tiers

Every tool carries a tier used for bulk policy authoring:

TierMeaningExamples
readNo side effectsget_file_contents, list_issues, search_code
writeCreates or modifies contentcreate_pull_request, slack_send_message, save_issue
destructiveDeletes or irreversibly changes statedelete_file, merge_pull_request, slack_delete_message

The policy builder lets you select an entire tier with one click — “forbid all destructive GitHub tools” is a single checkbox.

Calling tools

All connectors are served from the single MCP endpoint with service-prefixed tool names:

github__get_file_contents
linear__save_issue
slack__slack_send_message

tools/list on /mcp returns only the tools of connectors that are enabled on the agent and connected by you.

Example — one entry from a tools/list response. Each tool carries metadata identifying its service:

{
"name": "github__get_file_contents",
"description": "Get the contents of a file or directory from a GitHub repository",
"inputSchema": { "type": "object", "properties": { "owner": {}, "repo": {}, "path": {} } },
"_meta": {
"zstrike_service": "github",
"zstrike_service_label": "GitHub"
}
}

When calling the tool, keep the prefixed name; Wicket strips the prefix before forwarding upstream.