From stormkit
Walks through connecting Claude Code to a Stormkit instance by setting STORMKIT_HOST and STORMKIT_API_KEY env vars. Use when configuring MCP access or troubleshooting 401/timeout errors.
How this skill is triggered — by the user, by Claude, or both
Slash command
/stormkit:setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user connect Claude Code to their Stormkit instance. The Stormkit MCP
Help the user connect Claude Code to their Stormkit instance. The Stormkit MCP
server is configured in this plugin's .mcp.json via two environment variables:
STORMKIT_HOST — base URL of the instance. Defaults to https://api.stormkit.io
(Stormkit Cloud). Self-hosted users must set this to their own host, e.g.
https://stormkit.mycompany.com. Do not include a trailing /v1/mcp — the
plugin appends /v1/mcp automatically.STORMKIT_API_KEY — a Stormkit API key (starts with SK_). Created from the
Stormkit UI under User Settings → API Keys.Ask the user whether they're on Stormkit Cloud or self-hosted.
STORMKIT_HOST unset (the default is used).https://<host> with no path.Ask for their API key (SK_...). Never echo the full key back; confirm only
the last 4 characters.
Tell the user to export the variables in their shell profile so Claude Code picks them up on the next launch, for example:
# Self-hosted
export STORMKIT_HOST="https://stormkit.mycompany.com"
export STORMKIT_API_KEY="SK_xxxxxxxx"
# Cloud — only the key is needed
export STORMKIT_API_KEY="SK_xxxxxxxx"
Have them restart Claude Code (or reload the shell) so the env vars are read,
then run /mcp to confirm the stormkit server shows as connected.
SK_), or revoked. Re-issue a key from the Stormkit UI.STORMKIT_HOST is wrong or the instance
isn't reachable from the user's machine. Confirm the base URL and that the
Stormkit API is up.npx claudepluginhub stormkit-io/stormkit-io --plugin stormkitGuides MCP server integration into Claude Code plugins via .mcp.json or plugin.json, covering stdio, SSE, HTTP for external tools like filesystems and APIs.
Guides step-by-step installation of Stitch MCP server and stitch-kit plugin for Claude Code, Codex CLI, Cursor, and VS Code. For first-time setup, connection issues, or new user onboarding.
Guides integration of Model Context Protocol (MCP) servers into Claude Code plugins via .mcp.json or plugin.json. Covers stdio, SSE, and HTTP server types.