Set up WorkerKit in Grok Bot.
Written for the Grok Bot agent executing the setup and the person approving it. The agent does everything except two steps: creating the manager key in the WorkerKit dashboard and handing it over once for the fleet mount. The person's total time is about a minute.
Before you start
What you need.
A WorkerKit account, and admin access on it: manager keys are an admin-only surface. The Free plan is enough, and no card is needed.
Grok Bot, any agent in the Grok Bot app, able to add a custom MCP server.
About a minute of the human's time. The agent does everything except two steps: creating the key, and handing it over once for the fleet mount.
| What | Address | Why |
|---|---|---|
| Directory MCP | https://mcp.workerkit.ai/directory | The public kit catalog and the authoring guides. No auth, so it can be added first and used straight away. |
| Workers MCP | https://mcp.workerkit.ai/workers | Fleet operations, behind a bearer manager key. This is the mount that runs and configures workers. |
| Fleet access | https://workerkit.ai/fleet-access | Where an account admin creates the manager key. Admin only. |
| Skill file | https://workerkit.ai/grok-bot/SKILL.md | The tool reference and the operating rules the agent keeps after setup. |
| This guide as markdown | https://workerkit.ai/grok-bot/setup.md | The same steps, for an agent that reads markdown rather than a page. |
Why this route: Grok Bot adds custom remote MCP servers in chat, so it takes the hosted WorkerKit MCP mounts directly, with nothing to install and no code to write. The case for connecting at all is on the Grok Bot page.
One address is worth reading twice: workerkit.ai/mcp is the documentation page, and the live mounts are on mcp.workerkit.ai. The table above has both in full.
Step 1. Human, about 60 seconds
Create the manager key.
An account admin creates a key at workerkit.ai/fleet-access, picks its scopes and copies it once. The agent cannot do this part.
- 01
Sign in as the account that owns the fleet
At workerkit.ai. Someone who belongs to several accounts confirms the active one first: a key created in the wrong account shows up later as an empty fleet, and checking now saves that round trip.
- 02
Open Fleet access
workerkit.ai/fleet-access is an admin-only page. A member sees a notice saying so rather than a broken page.
- 03
Create a manager key named for its purpose
"Grok Bot" is a good name. A purpose-specific name makes the key easy to audit, and easy to revoke later without touching anything else.
- 04
Pick its scopes
The table below says what each one grants. Start with the reads and add only the scopes needed for the approved task. Choose an expiry and request fresh approval when more access is needed.
- 05
Copy the key once
It is shown at creation and never again, so keep it to hand for step 2. It becomes the Authorization header on the fleet mount, and it reaches the fleet only: no scope on it reads a mailbox, a calendar or a CRM.
| Scope | What it grants |
|---|---|
readWorkers | The fleet list, worker detail, and reads of memory, schedules and the instruction. |
readRuns | Run history, run detail, run events and a run's stored transcript. A receipt returned by a waiting run request is run content too: without this scope the run still starts and the receipt comes back with contentWithheld. |
runWorkers | Run now, one worker or up to 20 in one call, and cancel. |
manageMemory | Add, edit, retire and delete rules and facts; clear a run's report; grade a run. |
manageSchedules | Create, edit and delete schedules. |
manageInstructions | Create or replace a language worker's instruction, and answer a decision worker's install questions. |
manageState | Start and stop a worker. |
installKits | Preview and install a directory kit as a new worker. |
manageDeliveries | Create, edit and delete run-result delivery destinations: where the platform sends a run report when the worker finishes. Reading them rides on readWorkers. Availability is judged per account, so ask the channels operation rather than inferring it from the worker apps. |
manageBudgets | Read and change a worker's spend and run ceilings, and the account-wide fleet ceiling. Its own scope because raising a dollar cap is the one management action that can cost money without starting anything. |
createWorkers | Clone a worker into a new one, singly or in bulk, with a dry-run preview. The only non-kit creation path: a clone carries permissions a person already approved on the source. |
publishKits | Author kits: validate (a dry run that reports every gate at once), publish from content or from an owned worker, edit, replace, unlist, relist, make private, delete, and edit the publisher profile. A private kit installed with installKits is how a worker is built from scratch through the reviewed manifest pipeline. The anonymous Directory API serves the authoring guide, the live permission vocabulary and the per-app tool explorer; reads of your own kits ride on readWorkers. |
manageConnections | Connect and disconnect apps for your operators by credential: every family the Apps page accepts by paste (bot tokens, API keys, private-app tokens), validated live against the provider, stored encrypted, never returned; register your account's own MCP servers as custom MCP apps (with their credentials) and enable their tools; and set or remove your account's own model-provider keys. Reading which apps are connected, with a recipe for connecting each, rides on readWorkers. Google, Microsoft, GitHub and Reddit are browser sign-ins and stay on the Apps page. |
manageDeployments | Deploy a worker onto the hosted runtime and manage that deployment: its model and reasoning, its transcript setting, its spend ceilings, pause and resume, and undeploy. This is the step that makes an installed worker run at all: without a deployment it fires no schedule and a run request is refused with not_deployed. Reading the deployment and the model catalog rides on readWorkers. |
deleteWorkers | Delete a worker permanently: its key stops working, its schedules stop firing, and its instruction, memory, deployment and delivery destinations go with it — as do its sub-workers, because a dead orchestrator must never leave live workers behind. Not reversible by any call, which is why it is its own scope rather than part of start/stop: stopping a worker is reversible and this is not. Run receipts survive, and the freed worker slot is what clears a 402 limit_exceeded on install. |
readWallet | Read spendable wallet balance, fees and account checkout status. |
requestWalletTopUp | Create a human-confirmed Stripe Checkout link and inspect purchases requested by this key. Does not authorize charging a saved card. |
| Key | Scopes | What Grok Bot can then do |
|---|---|---|
| Observer | readWorkers, readRuns | Describe the fleet and everything it has done, and change nothing. Most of the first session's value is here. |
| Operator | add runWorkers, manageState, manageDeliveries | Run workers now, start and stop them, and route their reports. |
| Full automation | add manageSchedules, manageMemory, manageInstructions, manageBudgets, createWorkers | Schedule, teach, rewrite, cap and clone. manageInstructions rewrites a worker's tested method, so it is the one to add last. |
| Builder | add installKits, publishKits, manageConnections, manageDeployments, deleteWorkers | Install directory kits as new workers, author and publish kits, connect apps by credential and register your own MCP servers. installKits is the one a brand-new account wants first, because it is what puts a worker in an empty fleet. manageDeployments is what puts an installed worker on the hosted runtime: without it the worker exists but never runs, and worker_run answers not_deployed. |
A key carries the scopes it was granted when it was created. Granting a scope later never reaches an existing key: if a call answers 403 OPERATION_NOT_ALLOWED, an admin re-scopes the key at Fleet access or creates a new one, and the new key drops into the same header. Read key_info rather than assuming.
Step 2. Human and agent
Add both MCP servers.
The directory mount needs no auth. The fleet mount takes one Authorization header carrying the key from step 1, and Grok Bot asks for an explicit yes before it adds either.
- 01
Add the directory mount first
Name it workerkit-directory and point it at https://mcp.workerkit.ai/directory with no headers. It needs no key, so it is the fastest proof that Grok Bot can reach WorkerKit at all. Connected, it offers 9 tools.
- 02
Add the fleet mount with the key
Name it workerkit-workers, point it at https://mcp.workerkit.ai/workers, and give it one header: Authorization: Bearer pe_mgr_... carrying the key from step 1. One header is the whole of the authentication: there is no redirect address to register and no client to pre-approve. Connected, it offers 91 tools in the full profile, or 20 in the decision profile.
- 03
Confirm each add when Grok Bot asks
Grok Bot asks for an explicit yes before it adds an MCP server, so expect one confirmation per mount and answer it. An agent doing the wiring states the name, the URL and whether a header is attached, then waits: an instruction pasted earlier in the conversation is a request, not the approval itself.
- 04
Where the key lives afterwards
The key must stay outside conversation. If the client can only accept a bearer header through a chat message, stop fleet setup and use another supported client with protected credential storage. Do not infer a protected field exists. The public directory mount needs no key and remains available. Revoke any exposed key at Fleet access.
- Paste this into Grok Bot to add both mounts at once, then confirm each add
Add these two WorkerKit MCP servers: 1) workerkit-directory -> https://mcp.workerkit.ai/directory (no auth) 2) workerkit-workers -> https://mcp.workerkit.ai/workers with header Authorization: Bearer pe_mgr_... Then call key_info and workers_list and tell me the fleet size and scopes.
Both mounts speak streamable HTTP, so they are ordinary custom MCP servers to Grok Bot: a name, a URL, and for the fleet one header. When they connect, the directory offers 9 tools and the fleet offers 87 in the full profile or 20 in the decision profile, confirming that both are live.
Step 3. Agent
Verify the scopes.
Call key_info on the Workers mount. The scope list it returns is the truth, whatever was intended.
- Ask the key what it can do (Workers mount, no arguments)
key_info
It returns the account title, the key name, the key's scopes and expiry, and serverTimeUtc; any valid key may ask. Confirm the scope list matches what was granted in step 1. If anything is missing it was either not granted, or granted after the key was created, and the person goes back to Fleet access to re-scope or create a new key. Plan against what this call returns rather than what was intended.
Step 4. Agent
Keep the WorkerKit skill.
Save https://workerkit.ai/grok-bot/SKILL.md the way this bot saves skills, or re-read the URL at the start of any session that touches the fleet.
- Save this as a bot skill named for WorkerKit fleet operations
https://workerkit.ai/grok-bot/SKILL.md
The file is a standard skill: a name and a description in its front matter, then the tool reference, the cost-field semantics and the safety rules the agent needs. Grok Bot keeps skills as bot skills rather than loading them from a folder on disk, so save it the way this bot saves a skill and name it for WorkerKit fleet operations. Writing the file into a directory instead installs nothing, because nothing reads it back.
A bot that keeps no skills loses nothing: fetch the same URL at the start of any session that touches the fleet and read it before the first call. It is one request, the content is identical, and it is always the current version.
Step 5. Agent
Run the smoke test.
List the fleet and read recent runs, which alone prove the setup. If the account has workers, read one before running it, run it with approval, and report the receipt.
If the fleet is empty, stop after step 3 and say so: a new account has no workers yet, and the steps above have already proved the setup, because the key authenticated and both read scopes answered. Do not read it as a fault, and do not invent a worker to run. Go to step 6 and give the fleet its first worker.
If the fleet has workers, pick one whose effects are reads. Judge it from the instruction and the permissions, never from the name: a worker whose apps are all read-level and whose instruction only gathers, summarises or reports is safe to run; one that sends, posts, writes, orders or pays is not, whatever it is called. If none is clearly read-only, run one with an explicit prompt for that run bounding it to a read.
- 1. The directory is alive: confirm a kit count comes back
directory_overview - 2. The fleet list: report how many workers Grok Bot can see
workers_list - 3. Recent runs across the fleet: confirms readRuns
runs_feed { "limit": 5 } - 4. Before running anything, read what that worker does and what it may touch. Both ride on readWorkers, and this is the step that decides whether the run is safe
instruction_get worker_permissions_get - 5. Run it with the person's approval, then poll every 3 to 5 seconds until a terminal event arrives: run.succeeded, run.failed, run.blocked or run.awaiting_input
worker_run run_events { "afterSeq": <lastSeq> } - 6. Read the receipt: costAuthority first, then modelCostUsd
run_get
Read costAuthority first, then modelCostUsd beside it, and report both. A null finalDigest is not a failure: a run produces one only when its harness wrote a report. A costAuthority of unbilled_estimate, none or in_flight is not a failure either; it says how far to trust the number, and the operating rules below say what each value means.
A Skipped run is also a pass, and it is the cost brake working: the gate refused the run before any money moved. Report the skipReason rather than retrying. Then report the fleet size, the active scopes, and what the test cost, and the fleet is live.
Step 6. Human and agent
Give the fleet its first worker.
A new account starts empty. Install a kit from its page in one click, or let the agent preview and install one with kit_install_preview and kit_install once the person approves.
A new WorkerKit account starts with no workers, so the last step of setup is getting one. A kit is a ready-made worker: its instruction, its exact app permissions and its schedule, written and reviewed in advance, so installing one is how a fleet usually starts rather than a shortcut. There are two paths, and either ends with something to operate.
- 01
The one-click path: install a kit from its page
Browse the catalog at workerkit.ai/kits, open a kit whose job you recognise, and install it. It arrives pre-instructed, pre-permissioned and pre-scheduled, and asks for whatever it needs to connect. This path needs no scope on the manager key at all, so it works on the first session whatever the key can do.
- 02
The agent path: shortlist, preview, approve, install
With installKits on the key, Grok Bot can do the whole thing in chat: shortlist with kits_search, read the candidate with kit_get, then call kit_install_preview to surface its setup questions and exactly what the new worker would be allowed to touch. Put that in front of the person in plain words, and call kit_install once they approve, with deploy set to true so the new worker is actually able to run (that half needs manageDeployments on the key; without it the worker is installed but inert until worker_deploy). The new worker's key is shown once in the response.
- 03
Then run it once and read the receipt
A worker earns its place on the first run. Trigger it with worker_run, follow run_events until a terminal event arrives, and report the digest and the settled cost from run_get. Set a schedule with schedule_create when the person is happy with what it did, and the fleet is not just connected, it is working.
The catalog is at workerkit.ai/kits, and Grok Bot can read the whole of it through the directory mount before anyone signs in, so it can shortlist candidates and explain what each one would do while the person decides.
Classification on demand
Create a decision worker from your questions.
Categorize, score or triage connected data, then reuse and adjust the worker.
Reuse an existing worker or decision kit when its questions fit. For a custom classification task, creation compiles a supported source recipe and typed questions into a private kit and an installed decision worker. Optional deploy:true adds deployment; creation never starts a run or adds a schedule. The kit can be edited and published later through the normal kit lifecycle.
On the workers connection, call kit_app_tools(purpose:"decision") for recipes, argument schemas, permissions and examples, then kit_authoring_guide(section:"decision"). Check account connections with apps_list; public discovery does not check them. Send the request to decision_worker_create, follow nextCall, then use worker_run and run_get. Running needs runWorkers; results need readRuns. Use instruction_get / instruction_set for saved category or level answers, or answers on one run. Structural question/source changes need a revised kit and a replacement install. Check receipt status, coverage, omissions, warnings and cost before claiming completion.
Start with email-previews, calendar-events or sheets-rows. These recipes return judgments without app writes. Email previews do not include full threads; calendar events are invitation data, not transcripts; Sheets needs a Google file ID, a finite tab-qualified range and a columns map. A connected app alone does not make every tool a supported source. Source filters select evidence, not permissions: the Sheets recipe grants spreadsheet reads across the linked Drive account.
Supply 1–8 questions: choice with named options, score with ordered levels, or noul for the probability of a statement. Choice adds unclear automatically. Set an explicit confidenceFloor between 0 and 1; it routes uncertainty and does not promise accuracy. maxItems is 1–50, default 20. Creation requires publishKits and installKits; optional deployment also needs manageDeployments.
Use a fresh requestId for each new worker. Retry with the same ID and identical body to recover the original receipt; a changed body returns 409. The response includes tokenId for MCP/CLI worker commands, stable workerId, kitSlug, readiness and nextCall. A deploymentError means the worker already exists: fix deployment on that worker. The receipt is a snapshot; check current worker readiness before running. No worker API secret is returned.
The workers connection includes discovery and authoring, so classification needs one MCP connection. Its full profile has 91 tools (84 manager tools and 7 public discovery reads); only decision_worker_create is new. For a smaller list, a client that supports custom headers can send X-WorkerKit-Profile: decision on every request, including initialization, listing and calls, to select 20 workflow tools. A server operator can instead set MCP_WORKERS_PROFILE=decision. The endpoint and existing sign-in stay the same; a profile grants no additional permissions. Reconnect and relist after changing profiles. Use the advertised tool list: fleet administration, publishing and event-stream tools require the full profile. Successful responses include structured content and a text fallback; creation declares an output schema.
Operating rules
What the agent follows on every call.
The same rules the skill file carries, so a session that read neither still has them. Every row is a fact of the platform, not advice.
| Rule | What it means |
|---|---|
| Read the key before planning | Call key_info first in any session that touches the fleet, and plan against the scopes it returns. It also carries serverTimeUtc, which every age and deadline below is measured against. |
| Confirm before adding a server | Grok Bot asks for an explicit yes before it adds an MCP server. State the name, the URL and whether a header is attached, then wait for it: an instruction pasted earlier in the conversation is a request, not the approval. |
| Confirm before changing the fleet | Running, stopping, deleting or editing a worker changes the person's fleet: state the exact worker and action in plain words and get approval first, unless the person already approved that exact action. Publishing, unlisting or deleting a kit affects the directory and other installers, so confirm those too. |
| Know what a run will do before you start it | A run can send mail, post, write or spend, and the person approving it is trusting your reading of the worker. Read instruction_get and worker_permissions_get first (both ride on readWorkers) and say what the run will touch. |
| Let the header carry the key | Use a protected credential channel outside conversation. If this client accepts a key only in chat, stop fleet setup and use another supported client; the public directory still works. Never print or log a key or write it into memory, a skill or a shared file. Revoke an exposed key at Fleet access. |
| An empty fleet has a next step | A new account has no workers until someone installs a kit or clones one. Say so plainly, then offer the two paths: the person installs a kit from its page in one click, or, with installKits, you shortlist with kits_search, preview with kit_install_preview and install with kit_install once they approve. Never invent a worker id to have something to run. |
| Rate limits, per account | The fleet surface allows 120 requests a minute and 1,200 an hour; run triggers 30 a minute; run-event polls 120 a minute and 2,400 an hour, exempt from the surface windows; the kits surface 60 a minute; kit installs 10 an hour. On a 429, wait out Retry-After. Extra machines buy no extra budget. |
| Watching runs | Poll run_events every 3 to 5 seconds and pass afterSeq so each call returns only what is new. To watch the whole fleet, hold runs_feed with wait: one connection covers every worker, up to four held per account, and it always returns within the wait. fleet_pulse gives the in-flight rows beside it. |
| Brief from fleet_health | When the person asks how the fleet is doing, call fleet_health once instead of crawling workers_list, worker_get and runs_feed: it lists the workers that are blocked, the ones installed but never deployed, the schedules the runtime is not picking up, the runs waiting on an answer, and the last runs that did not end clean. Empty sections are the healthy answer; paused workers are counted, not listed, because stopping one is a decision. |
| Check account_usage before spending | Before an install, a deploy or a run, read account_usage: worker slots, hosted slots, spendable wallet balance and request windows. With requestWalletTopUp and permission for the amount, request a wallet_checkout_create link for the person to pay. Otherwise hand them topUpUrl. Only credited confirms committed funds. |
| 404 not_found | The worker is missing or belongs to another account, and the two are indistinguishable by design. Never claim which. |
| 403 OPERATION_NOT_ALLOWED | The key lacks a scope, and the message names it. A wider key is the fix, not a retry. |
| Time | Compute every age, deadline and countdown against the response's serverTimeUtc (on key_info, workers_list, fleet_pulse and fleet_health), never against your own clock. |
| Skipped is the brake working | A Skipped run is a receipt, not a transport error: the gate refused it before any money moved. Read skipReason (DailyRunCap, DailySpendCap, FleetSpendCap, ConcurrencyLimit, InsufficientCredits, DeploymentPaused, TokenDisabled or a readiness reason) and retry only when the reason clears on its own. |
| Money | Read costAuthority before the number beside it: settled, unbilled_estimate, none or in_flight. modelCostUsd is the settled figure; costSoFarUsd exists only while a run is Running. |
| Cloning multiplies ceilings | A clone carries the source worker's per-run and per-day ceilings, so read fleet_budget_get before worker_clone_bulk and size the fleet ceiling for the copies you are about to make. |
Quick answers
Symptoms, causes, fixes.
| Symptom | Cause and fix |
|---|---|
HTML instead of tools | workerkit.ai/mcp is the documentation page, not a mount. The live endpoints are on mcp.workerkit.ai: add mcp.workerkit.ai/directory and mcp.workerkit.ai/workers. |
401 on the Workers mount | Read the code rather than guessing: auth_required means the Authorization header never arrived, which is a wiring problem and not a key problem, and auth_failed means the key is unknown or revoked. Re-add the server with the header spelled Authorization: Bearer pe_mgr_... and it connects. |
403 OPERATION_NOT_ALLOWED | A scope is missing. Read key_info; an admin re-scopes the key at Fleet access or creates a new one, and the new key drops into the same header (the snapshot rule). |
404 not_found on a worker | Missing, or on another account. Verify the id, and that the key belongs to the account that owns the fleet. |
429 | Rate limited. Honour Retry-After; the per-account windows are in the operating rules above. |
Empty fleet on a new account | Expected, and not a fault: an account has no workers until someone installs a kit or clones one. The setup is proved already, because the key authenticated and the reads answered. Install a kit with kit_install to fill it. |
Empty fleet, or the wrong workers, on an account that has some | The key was created in a different WorkerKit account. Create it in the account that owns the fleet. |
Each failure names itself in the response, so an agent never has to guess which one it met: read the code, apply the row, and carry on.