From stackone-connectors
Discover StackOne's 200+ connectors and 9,000+ actions across HRIS, ATS, CRM, LMS, ticketing, messaging, documents, IAM, and accounting. Use when user asks "which providers does StackOne support", "what can I do with BambooHR", "recommend an integration for HR", "what actions are available", "how do I call a provider-specific action", or "does StackOne support Workday". Helps choose the right connector and actions for any use case. Do NOT use for building agents (use stackone-agents) or connecting accounts (use stackone-connect).
How this skill is triggered — by the user, by Claude, or both
Slash command
/stackone-connectors:stackone-connectorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Connector availability changes frequently as StackOne adds new providers. Before answering:
Connector availability changes frequently as StackOne adds new providers. Before answering:
https://docs.stackone.com/connectors/introduction for the current connector listNever assume a connector exists or doesn't exist without checking live docs.
Common patterns:
Fetch https://docs.stackone.com/connectors/introduction for the full, current list.
Consult references/category-overview.md for a snapshot of categories and example providers. But always verify against live docs since new connectors are added regularly.
Each connector exposes its own set of provider-specific actions. Action counts vary significantly — Salesforce has 370+ actions, HubSpot has 100+, while smaller providers may have a handful.
To find what's available for a specific provider:
https://docs.stackone.com/connectors/introductionhttps://docs.stackone.com/platform/api-reference/actions/make-an-rpc-call-to-an-actionActions are named {provider}_{operation}_{entity} (e.g., bamboohr_list_employees, salesforce_get_contact).
All actions are executed through StackOne's Actions API:
curl -X POST https://api.stackone.com/actions/rpc \
-H "Authorization: Basic $(echo -n 'YOUR_API_KEY:' | base64)" \
-H "x-account-id: ACCOUNT_ID" \
-H "Content-Type: application/json" \
-d '{
"action": "bamboohr_list_employees"
}'
AI agents typically call actions via the SDK or MCP rather than raw API calls — see the stackone-agents skill for SDK/MCP integration.
Fetch https://docs.stackone.com/platform/api-reference/actions/make-an-rpc-call-to-an-action for the full RPC reference.
npx @modelcontextprotocol/inspector https://api.stackone.com/mcp — test via MCP| Stage | Meaning | Recommendation |
|---|---|---|
| GA | Production-ready, fully supported | Safe for production |
| Beta | Stable for testing, minor changes possible | OK for non-critical flows |
| Preview | Early-stage, expect breaking changes | Development/testing only |
User says: "Which HRIS tools does StackOne support?"
Actions:
https://docs.stackone.com/connectors/introductionResult: Current list of HRIS connectors with per-provider action counts.
User says: "What can I do with BambooHR through StackOne?"
Actions:
https://docs.stackone.com/connectors/introduction and find BambooHRbamboohr_list_employees, bamboohr_get_employee, etc.)Result: Full list of BambooHR actions with how to call them.
User says: "Does StackOne support our custom HR tool?"
Actions:
https://docs.stackone.com/connectors/add-new
b. Build it: use the Connector Engine (see stackone-cli skill)Result: Clear path forward — either request or build.
Cause: Provider may be listed under a different name, or may not be supported yet.
Cause: The requested action doesn't exist for this provider.
bamboohr_list_employees not list_employees)Cause: Incorrect slug format.
https://stackone-logos.com/api/{connector-slug}/filled/pngbamboo-hr, google-drive)Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Reference for writing and editing skills with predictable behavior, covering invocation models, description writing, and information hierarchy.
npx claudepluginhub stackonehq/agent-plugins --plugin stackone-connectors