Developer docs · MCP-native · 2026

Developers — codifying Agentic Corporate Governance as Code

Connect your agent runtime to legal identity via @agentico/sdk and MCP. Install → create agent identity → generate entity → register agent → connect tools.

Request API key
@agentico/sdk MCP verbs human_approval formation v0.1

Quickstart

Install SDK ↓ Create agent identity (API key + human overseer) ↓ Generate entity (establish_master → incorporate_agent) ↓ Register agent (series id + docs[]) ↓ Connect tools (MCP + sign_contract / spawn_subsidiary)
  1. Install SDK

    npm install @agentico/sdk — TypeScript client for formation verbs.

  2. Authenticate

    Export AGENTICO_KEY from signup. Keys are scoped to your master account.

  3. establish_master

    Stand up Wyoming Series LLC master with named human_approval.

  4. incorporate_agent

    Adopt production agent as segregated series; receive docs[].

  5. Operate

    sign_contract, spawn_subsidiary, wind_down — all gated by human approval.

quickstart.ts
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

Grok connector

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

  1. One-command setup

    ./setup-grok-connector.sh then grok mcp doctor agentico

  2. Grok CLI

    grok mcp add agentico -e AGENTICO_KEY=$AGENTICO_KEY -- ./bin/agentico-mcp stdio

  3. Grok web

    ./bin/agentico-mcp serve 3001 → ngrok → grok.com/connectors Custom URL /mcp

  4. Use in chat

    10 tools discovered — incorporate series, list fleet, sign contracts with human_approval.

grok.com/connectors → Custom
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)

MCP integration

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.

ToolPurposehuman_approval
establish_masterMaster Wyoming Series LLCRequired
incorporate_agentAdopt agent series + docs[]Required
sign_contractRecord hashed terms between seriesRequired
spawn_subsidiaryChild series under parentRequired
wind_downRetire series; block new obligationsRequired
get_account_summaryAccount status & formation progress
list_seriesInventory adopted series
get_guided_setup_stateOnboarding flow position
update_account_preferencesNon-material preferences
advance_guided_setupProgress guided setup flow

Host setup guides: Grok · Hermes · Cursor · Claude · ChatGPT

Documentation map

SDK reference

@agentico/sdk — npm install, TypeScript types, verb payloads.

GitHub monorepo

Authentication

AGENTICO_KEY bearer token. Sandbox vs production keys from signup.

Get key

Agent lifecycle

Master → series → contracts → spawn → wind_down. Architecture diagrams.

Webhooks

Formation status events (v0.1: limited — audit stream via API responses).

AI agent LLC

Why wrap agents in entities. Formation guide.

MCP connectors

Grok · Hermes · Cursor · Claude · ChatGPT. Grok · BYOK

MCP AI agent LLC

Query landing for MCP-native formation. MCP AI agent LLC

BYOK AI

Bring Claude, GPT, or Grok keys. BYOK overview

Acceptable use

API/MCP policy. Acceptable use policy.

Developer FAQ

What profile ships in v0.1?

Formation-only: five verbs above. open_account, pay, and balance verbs are deferred (regulated track).

Does the SDK file with Wyoming?

No. SDK returns illustrative docs[]. You engage counsel and complete customer-led filing.

How does MCP connect to legal identity?

Each verb writes to series records under a U.S. human overseer — bridging runtime actions to entity-level audit trails.

Where is the OpenAPI spec?

Gateway routes documented in the monorepo services/gateway. Formation surface matches MCP verb schemas.

Can agents call verbs autonomously?

Technically yes via MCP; every formation verb requires named human_approval attestation — humans retain authority.

Get API key Architecture GitHub