AUVY

Codex plugin

Configure AUVY MCP and CLI for OpenAI Codex terminal workflows.

Codex plugin

Codex terminal workflows use API key auth and the AUVY CLI for JSON automation. The plugin ships .mcp.json for env-based MCP configuration.

Setup

Clone auvy-sdk

git clone https://github.com/AUVY-AI/auvy-sdk.git && cd auvy-sdk
bun run setup:local

Authenticate

export AUVY_API_KEY=ak_live_...
auvy auth login --api-key "$AUVY_API_KEY"
auvy auth status

MCP connection options

auvy auth mcp

Prints MCP config with the correct authorization header shape.

MCP config

Codex uses env-based API key auth via .mcp.json:

{
  "mcpServers": {
    "auvy": {
      "url": "https://mcp.auvy.ai/mcp",
      "headers": {
        "Authorization": "Bearer ${AUVY_API_KEY}"
      }
    }
  }
}

Set AUVY_API_KEY in your shell before starting Codex. Never commit real keys.

CLI automation

auvy vault session --json
auvy vault search "refund policy" --json

Full command reference: CLI · CLI quickstart

On this page