Model Context Protocol · MCP-native · agent fleets · 2026

MCP AI agent LLC — MCP-native incorporation for agent fleets

TL;DR: An MCP AI agent LLC is a Wyoming Series LLC series adopted via Model Context Protocol tools — your agent runtime calls establish_master, incorporate_agent, and fleet verbs directly. MCP-native incorporation for agent fleets: $295 master + $29/mo per series. Install with npx agentico-mcp.

Start Master Setup – $295
agentico-mcp 5 formation verbs human_approval rails Formation-only v0.1

Last updated

What is an MCP AI Agent LLC?

An MCP AI agent LLC is a Wyoming Series LLC series formed through Model Context Protocol (MCP) — not a separate entity type, but a MCP-native incorporation path where your agent host calls frozen formation verbs as tools: establish_masterincorporate_agent (repeat) → spawn_subsidiary for child agents.

For technical buyers building agent fleets, MCP is the integration layer: Claude Desktop, Cursor, or any MCP host can incorporate agents without embedding a custom SDK. Each verb returns structured docs[] (Certificate, Operating Agreement, IP Assignment, series designation) and requires named human_approval on adoption verbs — a compliance chokepoint, not autonomous self-filing.

Agentico generates illustrative templates; you engage counsel, file with Wyoming, obtain EIN, and open bank accounts. Segregation is not guaranteed without proper maintenance. See also AI agent LLC formation (Cluster #1) and Wyoming Series LLC for AI agents (Cluster #2).

Why MCP-Native Incorporation?

Model Context Protocol formation vs SDK-only vs manual — which path fits your agent runtime?

Factor MCP-native (Agentico) SDK-only (@agentico/sdk) Manual formation
Agent runtime integration Tools in any MCP host — zero app code Embed SDK in your TypeScript/Python app Email counsel, PDFs, spreadsheets
Formation verbs callable by agent Yes — 5 frozen MCP tools Yes — same verb interface No — human-only workflow
human_approval rails Required on every adoption verb Required on every adoption verb Ad hoc signatures
Fleet scaling spawn_subsidiary from MCP session spawn_subsidiary from app code New filing or counsel each agent
Time to Nth agent Minutes via incorporate_agent Minutes via incorporate_agent Days–weeks × N
Best for MCP-first agent fleets (Claude, Cursor) Custom backends, CI pipelines One-off entities, no automation

Illustrative comparison — not legal advice. Liability not guaranteed.

Five Formation Verbs — MCP Tool Surface (v0.1)

v0.1 exposes five formation verbs for MCP AI agent LLC adoption. Money verbs (open_account, pay, escrow) are deferred until Track-2 go-live.

Verb Input (frozen) Output human_approval
establish_master legal_name, human_approval { master, docs[] } Required
incorporate_agent name, purpose, human_approval, parent_series? { series, docs[] } Required
spawn_subsidiary parent_series_id, name, purpose, human_approval { series, docs[] } Required
sign_contract series_id, counterparty_series_id, terms { contract }
wind_down series_id { series } (status → winding_down)
MCP host (Claude Desktop / Cursor / custom) │ ├─ establish_master(legal_name, human_approval) → master + docs[] ├─ incorporate_agent(name, purpose, human_approval) → series + docs[] ├─ spawn_subsidiary(parent_series_id, …) → child series + docs[] ├─ sign_contract(series_id, counterparty_series_id) → contract (hashed terms) └─ wind_down(series_id) → series status winding_down
mcp-formation.ts — MCP AI agent LLC via @agentico/sdk (same frozen verbs)
import { Agentico } from "@agentico/sdk";

const ag = new Agentico({ apiKey: process.env.AGENTICO_API_KEY });
const approval = { attested_by: "Jane Doe", method: "webauthn" };

// 1. Master Wyoming Series LLC (once)
const { master, docs: masterDocs } = await ag.establish_master({
  legal_name: "AgentFleet Holdings LLC",
  human_approval: approval,
});

// 2. Incorporate each production agent as a series
const { series: sales, docs: salesDocs } = await ag.incorporate_agent({
  name: "sales-outreach-agent",
  purpose: "B2B outbound with CRM write access",
  human_approval: approval,
});

// 3. Spawn child series under parent (sub-agent tree)
const { series: emea } = await ag.spawn_subsidiary({
  parent_series_id: sales.id,
  name: "sales-emea-agent",
  purpose: "EMEA regional outreach variant",
  human_approval: approval,
});

// 4. Record contract between series
await ag.sign_contract({
  series_id: sales.id,
  counterparty_series_id: emea.id,
  terms: "Data license · attribution · 90-day term",
});

// 5. Wind down retired series
await ag.wind_down({ series_id: emea.id });

⏱ Series templates via MCP in seconds · Wyoming filing + banking customer-led (1–5 days typical)

MCP Server Setup — agentico-mcp

Install the Agentico MCP server to expose formation verbs as tools in any MCP-compatible host. Default profile is formation-only (v0.1).

terminal — run MCP server
npx agentico-mcp                      # stdio MCP server, formation surface, zero config
AGENTICO_API_KEY=sk_live_… npx agentico-mcp
Claude Desktop — mcpServers config
// Claude Desktop / any MCP host
{
  "mcpServers": {
    "agentico": { "command": "npx", "args": ["agentico-mcp"] }
  }
}

Auth: API key read from AGENTICO_API_KEY at start — fail closed on missing or invalid key. Errors follow frozen model { code, message, retriable } from @agentico/contracts.

Formation profile (default): establish_master, incorporate_agent, sign_contract, spawn_subsidiary, wind_down — no money, no custody. Set AGENTICO_PROFILE=full for complete verb surface (Track-2, gated).

How to Form an MCP AI Agent LLC

  1. Install agentico-mcp in your MCP host

    Add to Claude Desktop mcpServers or run npx agentico-mcp directly. Set AGENTICO_API_KEY for authenticated calls.

  2. establish_master() with human_approval

    Stand up master Wyoming Series LLC with legal_name and named human_approval. Returns master + docs[]. $295 one-time.

  3. incorporate_agent() per production agent

    Adopt segregated series with name, purpose, and human_approval. Returns series id + formation docs[]. $29/mo per series.

  4. Counsel review (mandatory)

    Licensed U.S. counsel reviews series segregation language, IP assignment, and foreign qualification triggers. Agentico is not a law firm and not a bank.

  5. Wyoming filing + registered agent (customer-led)

    Submit to Wyoming Secretary of State. Appoint registered agent. Agentico does not file for you in v0.1.

  6. Operate fleet: spawn_subsidiary, sign_contract, wind_down

    Scale with child series, record agent-to-agent contracts, and wind down retired agents. Money verbs deferred to Track-2.

Formation Paths — MCP Column

Factor Agentico DIY Wyoming doola Stripe Atlas
MCP-native tools Yes — agentico-mcp No No No
Wyoming Series LLC Designed for MCP-native agent fleets DIY OA language Often vanilla LLC Usually C-corp
incorporate_agent verb Yes No No No
spawn_subsidiary Yes Custom counsel No No
Time to Nth agent Minutes + counsel Weeks × N Days × N Days (single entity)
Pricing $295 + $29/mo/series State fees + counsel ~$297+ packages ~$500+

Illustrative comparison — not legal advice. See vs DIY Wyoming, vs doola, vs Stripe Atlas.

Glossary — MCP Formation Terms

MCP (Model Context Protocol)
Open standard connecting AI agents to external tools. Agentico exposes Wyoming Series LLC formation as MCP tools — your agent host calls verbs without custom SDK wiring.
human_approval
Named attestation from a U.S. human overseer required on establish_master, incorporate_agent, and spawn_subsidiary. Creates audit trail; not autonomous AI self-incorporation.
docs[]
Array of generated formation documents returned by adoption verbs — Certificate, Operating Agreement, IP Assignment, series designation, resolutions. Illustrative templates; counsel review required.
Formation profile
Default agentico-mcp surface (v0.1): five formation verbs only. Set AGENTICO_PROFILE=full for money verbs — Track-2, gated until regulated go-live.

FAQ — MCP AI Agent LLC

What is an MCP AI agent LLC?

A Wyoming Series LLC series formed via Agentico MCP verbs — establish_master, incorporate_agent, spawn_subsidiary, sign_contract, wind_down — with human_approval on adoption verbs. AI agent LLC overview.

How do I form an MCP AI agent LLC?

Install agentico-mcp, call establish_master with human_approval, then incorporate_agent per agent. Review docs[] with counsel, file in Wyoming, open bank accounts (customer-led). MCP agents article.

What is Model Context Protocol in entity formation?

MCP is an open tool protocol. Agentico exposes formation verbs as MCP tools so agent runtimes incorporate fleets without embedding SDKs — with human_approval gates on every adoption.

How do I set up the Agentico MCP server?

Run npx agentico-mcp or add to Claude Desktop mcpServers with command: npx and args: ["agentico-mcp"]. Set AGENTICO_API_KEY. Fail closed on invalid key.

What MCP verbs does Agentico expose in v0.1?

establish_master, incorporate_agent, sign_contract, spawn_subsidiary, wind_down. Money verbs deferred. v0.1 release notes.

What is human_approval in MCP formation?

Named attestation from a U.S. human overseer on establish_master, incorporate_agent, and spawn_subsidiary — audit trail that a human authorized each formation action.

Can I incorporate multiple agents via MCP?

Yes — one establish_master, multiple series via incorporate_agent and spawn_subsidiary. Wyoming Series LLC for AI agents.

How does MCP-native formation compare to SDK-only?

MCP exposes verbs as tools in any compatible host (Claude, Cursor). SDK embeds the same frozen verbs in your app code. Same contracts; different transport.

Does Agentico MCP file with Wyoming Secretary of State?

No — customer-led filing in v0.1. Agentico generates templates via MCP only. Entity notices.

What is the formation profile vs full profile?

Default: formation verbs only. AGENTICO_PROFILE=full exposes money verbs (Track-2, gated). Money path inert in formation profile.

How much does MCP AI agent LLC formation cost?

$295 master + $29/mo per series (illustrative). State fees, RA, counsel, banking separate. Not binding offers.

Is limited liability guaranteed for MCP AI agent LLC series?

No. Requires proper formation, separate books, and maintenance. Engage counsel. Templates not reviewed by licensed counsel.

Pricing — MCP AI Agent LLC Formation

$295
one-time master Wyoming Series LLC
+ $29/mo per MCP-adopted agent series
MCP-native · five formation verbs · human_approval rails
Start MCP Formation – $295

Illustrative v0.1 pricing — not binding offers. Filing, RA, counsel, and bank costs are separate. Billing

Start Master Setup – $295 AI agent LLC Wyoming Series LLC MCP agents article Resources