PlungeAI in your tool

MCP server: https://mcp.plungeai.com/v1 · API: https://api.plungeai.com

Get a key at Dashboard → One API → Keys (keys never leave this page).

Claude Code

  1. Run the command in a terminal
  2. Ask Claude: "use plungeai_whoami to confirm my identity"
  3. Skills plugin (when the public repo is published): claude plugin marketplace add PlungeAI/plungeai-agent-skills, then claude plugin install plungeai@plungeai — until then, download /skill.zip
claude mcp add --transport http plungeai https://mcp.plungeai.com/v1 --header "Authorization: Bearer ozk_YOUR_KEY"

claude.ai / Claude Desktop

  1. claude.ai: Customize → Skills → + → Upload a skill — upload https://mcp.plungeai.com/skill.zip
  2. Claude Desktop: add the mcp-remote block to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\), then fully restart — needs Node.js; Desktop custom connectors are OAuth-only, hence the bridge
{
  "mcpServers": {
    "plungeai": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.plungeai.com/v1",
        "--header",
        "Authorization: Bearer ozk_YOUR_KEY"
      ]
    }
  }
}

Cursor

Add to Cursor
  1. Type your ozk_ key into the box above — the button link personalizes locally
  2. Click "Add to Cursor" and confirm the install dialog
  3. No key entered? Add the Authorization header in ~/.cursor/mcp.json afterwards (user-level file, never a repo file)
  4. Verify in agent chat: "use plungeai_whoami to confirm my identity"

VS Code

Add to VS Code
  1. Type your ozk_ key into the box above, click "Add to VS Code", confirm the MCP dialog
  2. Or CLI: code --add-mcp '{"name":"plungeai","type":"http","url":"https://mcp.plungeai.com/v1","headers":{"Authorization":"Bearer ozk_YOUR_KEY"}}'
  3. Verify in Copilot agent chat: plungeai_whoami

Replit

Add to Replit
  1. Type your ozk_ key into the box above, click "Add to Replit" — Agent gains the plungeai_* tools across your projects
  2. Or by hand: Integrations → MCP Servers → + Add MCP server (URL + Authorization header under Advanced settings)
  3. Verify: ask Agent to run plungeai_whoami

Lovable

  1. Chat connector: Connectors → + → MCP server → URL https://mcp.plungeai.com/v1, auth Bearer, paste your ozk_ key (workspace admins may need to enable Custom MCP first)
  2. App connector (workspace admin): follow https://mcp.plungeai.com/lovable/SETUP.md
  3. Verify: ask Lovable to run plungeai_whoami

Bolt.new

  1. In the chatbox: + → Connectors → Manage connectors → Custom MCP server
  2. Name: PlungeAI · URL: https://mcp.plungeai.com/v1 · Transport: HTTP · Authentication: API key (paste your ozk_ key)
  3. Enable the tools you need; optional "Auto-enable for all projects"
  4. Verify: ask Bolt to run plungeai_whoami

v0 (Vercel)

  1. In the prompt form: + → MCPs → Add MCP
  2. URL https://mcp.plungeai.com/v1 · Auth: Bearer Token (paste the raw ozk_ key, no "Bearer " prefix) or Custom Headers → Authorization
  3. Pick a permission mode (Ask for Approval recommended)
  4. Verify: ask v0 to run plungeai_whoami

Windsurf

  1. Open ~/.codeium/windsurf/mcp_config.json (user-level file)
  2. Add the snippet, replace ozk_YOUR_KEY, then refresh Cascade's MCP panel (or restart Windsurf)
  3. Verify in Cascade: plungeai_whoami
{
  "mcpServers": {
    "plungeai": {
      "serverUrl": "https://mcp.plungeai.com/v1",
      "headers": {
        "Authorization": "Bearer ozk_YOUR_KEY"
      }
    }
  }
}

Ocean CLI (terminal)

  1. The CLI ships with the platform repo today; @plungeai/ocean-cli lands on npm when published
  2. AI terminal: `ocean` · run flows: `ocean workflow run <id>` · identity: `ocean whoami`
# from the Ocean-Platform repo (npm package coming soon):
npm run ocean -- --help
ocean auth set-key   # paste your ozk_ key (hidden prompt)
ocean doctor         # verify connectivity

ChatGPT / Codex

  1. ChatGPT web: coming soon — it requires OAuth; PlungeAI OAuth is in progress
  2. Today via OpenAI Codex CLI: codex mcp add plungeai --url https://mcp.plungeai.com/v1 --bearer-token-env-var PLUNGEAI_API_KEY
  3. Verify inside Codex: /mcp lists plungeai