Skills Rulebase
Set up Rulebase access
Gets a user from nothing to a working Rulebase connection: an account, the right data region, an MCP connection for reading workspace data from an AI client, and an API key for pushing data in over REST.
npx rulebase-skills install rulebase-setupWhen to use it
Reach for this when someone says any of these — they are the phrases the skill itself triggers on:
- “connect Claude to Rulebase”
- “install the Rulebase MCP”
- “set up the Rulebase connector”
- “create a Rulebase API key”
- “how do I sign up for Rulebase”
- “Rulebase returns 401”
- “no token provided”
How it works
The method, in the order the skill runs it. The full procedure — tables, worked examples and the edge cases — is in the skill itself.
The mistake this skill exists to prevent
Rulebase has two credentials and they are not interchangeable.
Step 0: get a workspace
Rulebase is not self-serve. There is no public sign-up form, and no way to create an organization yourself.
Step 1: find the data region
Everything else depends on this, and it is decided by which host you sign in at — there is no region setting to read, and a user cannot move themselves between regions.
Step 2: connect the MCP server
The endpoint must include the /mcp path. The bare hostname is not an MCP endpoint, and clients fail against it with an unhelpful transport error.
Step 3: verify the MCP connection
Do this before any real work, and do it in this order: get_current_organization, get_workspace_schema.
Step 4: create an API key
Only needed if something is pushing data into Rulebase — conversations from a helpdesk with no native connection, or back-office work items from an internal tool. Reading via MCP needs no key.
Step 5: verify the key
Authenticate with Authorization: Bearer <key>. Listing conversation uploads is the right first call because it only reads.
Related skills
Free and open source, and vendor-neutral — it reads the conversations from whichever helpdesk you already run. Browse all 149 skills · connect your helpdesk over MCP · source on GitHub
