What profile ships in v0.1?
Formation-only: five verbs above. open_account, pay, and balance verbs are deferred (regulated track).
v0.2 alpha. Ten MCP tools — five formation verbs + five read/configure tools. Payment verbs deferred. Not a law firm · not a bank. Disclosures
Connect your agent runtime to legal identity via @agentico/sdk and MCP.
Install → create agent identity → generate entity → register agent → connect tools.
npm install @agentico/sdk — TypeScript client for formation verbs.
Export AGENTICO_KEY from signup. Keys are scoped to your master account.
Stand up Wyoming Series LLC master with named human_approval.
Adopt production agent as segregated series; receive docs[].
sign_contract, spawn_subsidiary, wind_down — all gated by human approval.
import { Agentico } from "@agentico/sdk";
const ag = new Agentico({ apiKey: process.env.AGENTICO_KEY });
const approval = { attested_by: "Jane Doe", method: "webauthn" };
await ag.establish_master({
responsible_party: "Jane Doe",
human_approval: approval,
});
const { series, docs } = await ag.incorporate_agent({
name: "ops-agent-01",
description: "Operations workflow agent",
human_approval: approval,
});
// series.id · docs[] formation package
Add Agentico as a Custom MCP connector in Grok — CLI, Desktop, or grok.com/connectors. Grok discovers formation verbs and calls them like built-in tools.
Full setup guide: Grok connector · BYOK overview: Bring your own AI
./setup-grok-connector.sh then grok mcp doctor agentico
grok mcp add agentico -e AGENTICO_KEY=$AGENTICO_KEY -- ./bin/agentico-mcp stdio
./bin/agentico-mcp serve 3001 → ngrok → grok.com/connectors Custom URL /mcp
10 tools discovered — incorporate series, list fleet, sign contracts with human_approval.
Name: Agentico LLC Entities
URL: https://your-tunnel.ngrok-free.app/mcp
Description: Wyoming Series LLC formation for AI agent fleets
Auth: Bearer AGENTICO_KEY (from signup)
Agentico exposes ten MCP tools over the Model Context Protocol — formation verbs plus
account read/configure tools. Every material action requires human_approval.
See MCP AI agent LLC and
Wyoming Series LLC for MCP agents.
| Tool | Purpose | human_approval |
|---|---|---|
establish_master | Master Wyoming Series LLC | Required |
incorporate_agent | Adopt agent series + docs[] | Required |
sign_contract | Record hashed terms between series | Required |
spawn_subsidiary | Child series under parent | Required |
wind_down | Retire series; block new obligations | Required |
get_account_summary | Account status & formation progress | — |
list_series | Inventory adopted series | — |
get_guided_setup_state | Onboarding flow position | — |
update_account_preferences | Non-material preferences | — |
advance_guided_setup | Progress guided setup flow | — |
Host setup guides: Grok · Hermes · Cursor · Claude · ChatGPT
Master → series → contracts → spawn → wind_down. Architecture diagrams.
Formation status events (v0.1: limited — audit stream via API responses).
Why wrap agents in entities. Formation guide.
Query landing for MCP-native formation. MCP AI agent LLC
Bring Claude, GPT, or Grok keys. BYOK overview
API/MCP policy. Acceptable use policy.
Formation-only: five verbs above. open_account, pay, and balance verbs are deferred (regulated track).
No. SDK returns illustrative docs[]. You engage counsel and complete customer-led filing.
Each verb writes to series records under a U.S. human overseer — bridging runtime actions to entity-level audit trails.
Gateway routes documented in the monorepo services/gateway. Formation surface matches MCP verb schemas.
Technically yes via MCP; every formation verb requires named human_approval attestation — humans retain authority.