Cursor · MCP · v0.2 alpha

Incorporate every agent — directly from Cursor

Wire Agentico into Cursor via .cursor/mcp.json. Your chosen model (Claude, GPT, Grok) powers chat inference; Agentico exposes ten Wyoming Series LLC formation tools with human_approval on every material step.

Get AGENTICO_KEY → BYOK overview
10 MCP tools .cursor/mcp.json human_approval Any Cursor model

TL;DR

Agentico ships an MCP server for Cursor. Generate config with bridge setup cursor or hand-edit .cursor/mcp.json in your project root. Tools: establish_master, incorporate_agent, sign_contract, spawn_subsidiary, wind_down, plus account read/configure verbs. AGENTICO_KEY authenticates to Agentico; Cursor handles inference. Not an LLM host.

Bridge setup (fastest)

  1. Prerequisites

    export AGENTICO_KEY=agk_… — build the MCP server in byok-ai-integration.

  2. Generate config

    node packages/bridge/dist/cli.js setup cursor — writes .cursor/mcp.json with stdio transport.

  3. Restart Cursor

    Open the project, then Settings → MCP → confirm agentico shows connected.

  4. Chat

    Ask naturally — Cursor discovers tools at session start and calls them like built-in integrations.

bridge setup cursor
export AGENTICO_KEY=agk_…
export AGENTICO_ENV=sandbox
node packages/bridge/dist/cli.js setup cursor

.cursor/mcp.json (manual)

  1. Create file

    Place .cursor/mcp.json in your project root.

  2. Point to MCP server

    Use absolute path to packages/mcp-server/dist/cli.js with stdio args.

  3. Set env vars

    AGENTICO_KEY via ${AGENTICO_KEY} placeholder — Cursor expands from your shell.

.cursor/mcp.json
{
  "mcpServers": {
    "agentico": {
      "command": "node",
      "args": ["/absolute/path/to/packages/mcp-server/dist/cli.js", "stdio"],
      "env": {
        "AGENTICO_KEY": "${AGENTICO_KEY}",
        "AGENTICO_ENV": "sandbox"
      }
    }
  }
}

Tools Cursor discovers

ToolWhat Cursor can doGate
establish_masterStand up master Wyoming Series LLChuman_approval
incorporate_agentAdopt agent as segregated series + docs[]human_approval
sign_contractRecord hashed terms between serieshuman_approval
spawn_subsidiaryChild series under parenthuman_approval
wind_downRetire a serieshuman_approval
get_account_summaryAccount status & formation progress
list_seriesInventory adopted series
get_guided_setup_stateOnboarding flow position
update_account_preferencesAdjust account preferencessoft confirm
advance_guided_setupMove guided setup forwardsoft confirm

In Cursor, tools appear under the agentico MCP server namespace.

Example prompts

"Use the agentico MCP server to call get_account_summary and summarize my account."
"Use list_series to show my adopted Wyoming series."
"What guided setup step am I on? Call get_guided_setup_state."
"Prepare incorporate_agent for ops-agent-01 — I'll provide human_approval from Jane Doe."

FAQ

Does Cursor file with Wyoming automatically?

No. Agentico returns illustrative docs[]. You engage counsel and complete customer-led filing. Material verbs require named human_approval.

Do I need a separate API key for Cursor chat?

Cursor uses your model provider key for inference (BYOK). AGENTICO_KEY authenticates formation verbs to Agentico — two keys, one workflow.

MCP server not listed in Settings?

Restart Cursor after adding .cursor/mcp.json. Verify absolute path to cli.js and that AGENTICO_KEY is exported before launch.

Can I use sandbox without a live key?

Yes — set AGENTICO_MOCK=1 or AGENTICO_ENV=sandbox for simulated responses during connector testing.

Get AGENTICO_KEY Developer docs Bring your own AI