Connect Claude to INITE Studio
Skills run on your machine. Reasoning runs on your Anthropic tokens. Our MCP server handles raw data fetching, deterministic math, and persistence. Four steps from zero to your first audit.
- OverviewThree layers, one audit
The product splits cleanly into skills (markdown recipes Claude follows), MCP tools (raw data + math, hosted by us), and the dashboard (your audit history, billing, and BYOK keys). You choose how deeply you want to touch each layer.
- Step 1Install the skills
A one-liner installer drops 26 markdown skills into your Claude config directory.
- Step 2Generate an API key
The MCP server uses bearer-token auth — one key per Claude client (laptop, workstation, CI). Keys are SHA-256 hashed at rest; the plaintext is shown once, then never retrievable.
- Step 3Add the MCP server to Claude
Three flavours: Claude Desktop, Claude Code (CLI), and the Anthropic SDK. Pick the one matching where you run Claude. Replace
YOUR_API_KEYwith the key from step 2. - Step 4Run your first audit
The audit-idea master skill orchestrates 9 sub-skills + dealbreakers synthesis. Claude calls our MCP tools as needed; we never touch your reasoning.
- How scoring worksMethodology v2
Stage-aware, confidence-weighted scoring. Replaces the legacy GO/REFINE/KILL three-bucket verdict with a four-bucket decision and a per-lens confidence vector.
- OptionalBring your own keys (BYOK)
Plug your own provider keys to skip pooled metering, unlock subscription discounts, and keep all data flowing through accounts you already pay for.
- IntegrationsWebhooks
Receive POSTs when audits finalize, outcomes are recorded, or new entities are discovered. Standard HMAC-SHA256 signature verification.
- HeadlessPOST /api/audit/run
Run an audit without Claude Desktop. Streams the same Server-Sent Events the dashboard consumes — perfect for CI checks, batch evaluations, or embedding inside another product.
- ReferenceMCP tool catalogue
103 tools, grouped by purpose. Skills call them automatically; you can also invoke directly for custom flows. Probe the live registry at
GET /mcp/toolswith a bearer token. - Mental modelWhat runs where
- HelpTroubleshooting