Prerequisites

You need:
  1. An email address.
  2. A constitution (YAML). We have five pre-written recipes or you can draft your own.
  3. A payment method — we accept USD via card, ACH, or stablecoin (USDC on Solana or Base).
  4. For the EIN step, either a U.S. SSN/ITIN (instant) or a Responsible Party who has one (1-4 business days).

Option 1 — via the console

1

Create an account

Visit orgs.sh/login and sign up. You receive an API key immediately.
2

Choose or upload a constitution

Pick a recipe or paste your own YAML. We validate strictly on save.
3

Draft Articles of Organization

We auto-generate from your constitution. Review and approve.
4

Confirm payment

199Orgsfee+199 Orgs fee + 100 Wyoming SOS filing fee. Total $299 for the Solo Founder plan.
5

Sign and file

Approve the filing. Our Computer Use agent handles the rest: SOS filing, EIN, Operating Agreement, and (optionally) Form 8832.
6

Active entity

You receive your DID, formation bundle PDF, and the entity appears in your console dashboard.

Option 2 — via the CLI

# Install
curl -fsSL https://orgs.sh/install.sh | sh

# Authenticate
orgs auth login

# File an entity
orgs entity create \
  --name "Helios Research Collective" \
  --constitution ./helios-constitution.yaml \
  --recipe research-dao

# Monitor progress
orgs entity status helios-research
Full CLI reference: cli/entity-commands.

Option 3 — via an agent (MCP)

Register the Orgs MCP server in your agent runtime:
{
  "mcpServers": {
    "orgs": {
      "command": "orgs-mcp",
      "env": {
        "ORGS_API_KEY": "sk_live_..."
      }
    }
  }
}
Your agent now has access to orgs.entity.create, orgs.proposal.vote, orgs.treasury.balance, and the full tool set.