Registers the Intempt MCP server and bundles a setup skill that installs the CLI, logs in, and resolves org/project -- so you don't have to do any of that by hand.
/plugin marketplace add intempt/claude-plugin
/plugin install intempt@intempt-plugins
Restart Claude Code (exit and relaunch) -- the MCP server this plugin registers isn't picked up until the next session start. Then say:
run intempt setup
This invokes the bundled intempt:setup skill, which:
- Installs
@intempt/cliglobally via npm if it isn't already onPATH - Logs you in (prefers the MCP server's own
logintool; falls back tointempt login, which opens your browser) - Runs
intempt use --org ... --project ...non-interactively if your account belongs to more than one org, or one org with more than one project - Verifies both the CLI and the MCP server's tools are working
Organized around Intempt's four sold products (Analytics, Design, Marketing, Sales), not around internal data domains -- so "draft a follow-up email" or "generate a hero image" route to one obvious skill instead of colliding across several that happen to share a verb.
| Skill | Covers |
|---|---|
intempt |
Router -- start here, points to the others |
setup |
Install, login, org/project resolution |
instrument |
Tracking plans + typed SDK codegen (init/generate/add/remove/validate/status) |
registry |
Direct access to any of the 202 registry commands, natural-language resolution, write-safety classes |
crm |
Accounts, users/contacts, deals, segments -- the lookup/list layer every product uses |
analyze |
Funnels, retention, dashboards, subscription/revenue metrics |
design |
Content generation (email/SMS/push/page/Slack/text/image), brand assets, brand voice/knowledge base |
market |
Journeys (outreach), experiences (testing/personalization), events |
sell |
Outreach drafting, AI call summaries, the sales motion (references crm for lookup) |
| Path | What it is |
|---|---|
.claude-plugin/marketplace.json |
Marketplace manifest (what /plugin marketplace add reads) |
intempt/.claude-plugin/plugin.json |
Plugin manifest |
intempt/.mcp.json |
Registers the MCP server (npx -y @intempt/mcp-server) |
intempt/skills/*/SKILL.md |
The 9 skills above |
The actual CLI and MCP server are built in Intempt's internal monorepo and
published to npm as @intempt/cli and @intempt/mcp-server. This repo is
only the Claude Code distribution wrapper around those published packages --
it has no source code of its own.
MIT