> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useorgx.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# OrgX AI Toolkit

> One page to get OrgX working in every AI tool you already use — Claude, Cursor, Codex, VS Code, Windsurf, Zed, ChatGPT, and Gemini CLI.

<Note>
  **Start here.** The AI Toolkit is the single entry point for connecting OrgX
  to every AI client you already use. One command installs in all of them.
</Note>

## Install Organizational Memory in Every AI Tool You Use

OrgX gives Claude, Cursor, Codex, VS Code, Windsurf, Zed, ChatGPT, Gemini CLI, and other MCP clients shared organizational memory: decisions, artifacts, tasks, approvals, and project execution context. One install, every client.

## 3 Ways to Connect

<CardGroup cols={3}>
  <Card title="Path A: Wizard CLI" icon="wand-magic-sparkles" color="#14B8A6">
    **Recommended.** Detects which AI clients you have installed and configures them automatically.

    ```bash theme={"dark"}
    npx @useorgx/wizard@latest setup
    ```

    Handles OAuth, config files, and auto-update across every supported client.
  </Card>

  <Card title="Path B: Skills" icon="puzzle-piece" color="#0AD4C4">
    **Manual.** Add OrgX directly via your client's skill or plugin interface.

    Best for clients with a built-in plugin marketplace (OpenClaw, VS Code extensions).

    See [OpenClaw Plugin Setup →](/guides/openclaw-plugin-setup)
  </Card>

  <Card title="Path C: MCP Direct" icon="server" color="#BFFF00">
    **Raw endpoint.** Point any MCP-compatible client at the hosted server.

    ```text theme={"dark"}
    https://mcp.useorgx.com/mcp
    ```

    Handles OAuth automatically on first connect. See [MCP Protocol →](/api/mcp-protocol)
  </Card>
</CardGroup>

***

## Client Compatibility Matrix

| Client         | Recommended Path | Auto-Update | Widgets | Notes                                                                       |
| -------------- | ---------------- | ----------- | ------- | --------------------------------------------------------------------------- |
| **Claude**     | Wizard / MCP     | Yes         | Yes     | Use Settings → Connectors for remote MCP                                    |
| **Cursor**     | Wizard / MCP     | Yes         | Yes     | Wizard writes `~/.cursor/mcp.json` automatically                            |
| **Codex**      | Wizard / Skills  | Yes         | No      | Skills injected via `AGENTS.md` or codex config                             |
| **VS Code**    | Wizard / MCP     | Yes         | Yes     | Wizard writes user MCP config; supports widgets                             |
| **Windsurf**   | Wizard / MCP     | Yes         | No      | MCP supported; no widget surface yet                                        |
| **Zed**        | Wizard / MCP     | Coming soon | No      | MCP support in progress                                                     |
| **ChatGPT**    | MCP direct       | No          | Yes     | Add `https://mcp.useorgx.com/mcp` via Apps & Connectors → Remote MCP server |
| **Gemini CLI** | MCP direct       | No          | No      | Point at `https://mcp.useorgx.com/mcp`                                      |

***

## What the Toolkit Includes

<CardGroup cols={2}>
  <Card title="Wizard CLI" icon="wand-magic-sparkles" href="/guides/wizard-cli-onboarding">
    **Auto-configure every client.** `npx @useorgx/wizard@latest setup` detects
    Claude, Cursor, VS Code, Codex, Windsurf, and Zed — then writes all config
    files, handles OAuth, and keeps everything in sync.
  </Card>

  <Card title="Hosted MCP Server" icon="server" href="/api/mcp-protocol">
    **Organizational memory + execution control.** `https://mcp.useorgx.com/mcp`
    is the OAuth-protected streamable HTTP endpoint. Every MCP-compatible
    client speaks to the same surface — remember, recall, approve, delegate,
    and track.
  </Card>

  <Card title="Skills & Plugins" icon="puzzle-piece" href="/guides/openclaw-plugin-setup">
    **Native integration.** The OpenClaw plugin wires OrgX into the local AI
    runtime with browser-pairing in 60 seconds. Skills inject OrgX context
    directly into agent instruction sets.
  </Card>

  <Card title="Live Dashboard" icon="gauge" href="https://useorgx.com">
    **Mission Control.** Every decision, artifact, and initiative is visible in
    the web app — and actions taken in any client (Claude, Cursor, ChatGPT)
    surface here in real time.
  </Card>
</CardGroup>

***

## Explore Before Full Setup

Use these paths before wiring a full production workspace:

<CardGroup cols={2}>
  <Card title="Sandbox Playground" icon="flask" href="https://useorgx.com/playground">
    Visit [useorgx.com/playground](https://useorgx.com/playground) after signing in
    to try guided sandbox flows without configuring an external MCP client.
  </Card>

  <Card title="Public MCP Endpoint" icon="server">
    Connect any MCP client to `https://mcp.useorgx.com/public` for no-auth
    discovery tools, example payloads, and connection help. It does not expose
    workspace data or execute authenticated OrgX actions.
  </Card>
</CardGroup>

To add the public endpoint to **Cursor** (or any client that supports `mcp-remote`), add this to your MCP config:

```json theme={"dark"}
{
  "mcpServers": {
    "orgx-preview": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.useorgx.com/public"]
    }
  }
}
```

<Note>
  The public endpoint is discovery-only. To remember decisions, search real
  workspace memory, approve work, or spawn agents, connect the authenticated
  MCP endpoint at `https://mcp.useorgx.com/mcp`.
</Note>

***

## Next Steps

<CardGroup cols={3}>
  <Card title="Wizard CLI Onboarding" icon="wand-magic-sparkles" href="/guides/wizard-cli-onboarding">
    Complete walkthrough for the fastest setup path.
  </Card>

  <Card title="Cursor + MCP Setup" icon="code" href="/guides/cursor-mcp-setup">
    Manual Cursor configuration if you prefer not to use the wizard.
  </Card>

  <Card title="ChatGPT Integration" icon="comments" href="/guides/chatgpt-integration">
    Add OrgX as a remote MCP server in ChatGPT.
  </Card>

  <Card title="OpenClaw Plugin Setup" icon="plug" href="/guides/openclaw-plugin-setup">
    60-second browser pairing for local OpenClaw runtimes.
  </Card>

  <Card title="Agent Quickstart" icon="robot" href="/agent-ops/agent-quickstart">
    Spawn your first agent task once you're connected.
  </Card>
</CardGroup>
