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
Run the command in a terminal Ask Claude: "use plungeai_whoami to confirm my identity" 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
claude.ai: Customize → Skills → + → Upload a skill — upload https://mcp.plungeai.com/skill.zip 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
Type your ozk_ key into the box above — the button link personalizes locally Click "Add to Cursor" and confirm the install dialog No key entered? Add the Authorization header in ~/.cursor/mcp.json afterwards (user-level file, never a repo file) Verify in agent chat: "use plungeai_whoami to confirm my identity"
VS Code
Add to VS Code
Type your ozk_ key into the box above, click "Add to VS Code", confirm the MCP dialog Or CLI: code --add-mcp '{"name":"plungeai","type":"http","url":"https://mcp.plungeai.com/v1","headers":{"Authorization":"Bearer ozk_YOUR_KEY"}}' Verify in Copilot agent chat: plungeai_whoami
Replit
Add to Replit
Type your ozk_ key into the box above, click "Add to Replit" — Agent gains the plungeai_* tools across your projects Or by hand: Integrations → MCP Servers → + Add MCP server (URL + Authorization header under Advanced settings) Verify: ask Agent to run plungeai_whoami
Lovable
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) App connector (workspace admin): follow https://mcp.plungeai.com/lovable/SETUP.md Verify: ask Lovable to run plungeai_whoami
Bolt.new
In the chatbox: + → Connectors → Manage connectors → Custom MCP server Name: PlungeAI · URL: https://mcp.plungeai.com/v1 · Transport: HTTP · Authentication: API key (paste your ozk_ key) Enable the tools you need; optional "Auto-enable for all projects" Verify: ask Bolt to run plungeai_whoami
v0 (Vercel)
In the prompt form: + → MCPs → Add MCP URL https://mcp.plungeai.com/v1 · Auth: Bearer Token (paste the raw ozk_ key, no "Bearer " prefix) or Custom Headers → Authorization Pick a permission mode (Ask for Approval recommended) Verify: ask v0 to run plungeai_whoami
Windsurf
Open ~/.codeium/windsurf/mcp_config.json (user-level file) Add the snippet, replace ozk_YOUR_KEY, then refresh Cascade's MCP panel (or restart Windsurf) Verify in Cascade: plungeai_whoami
{
"mcpServers": {
"plungeai": {
"serverUrl": "https://mcp.plungeai.com/v1",
"headers": {
"Authorization": "Bearer ozk_YOUR_KEY"
}
}
}
}
Ocean CLI (terminal)
The CLI ships with the platform repo today; @plungeai/ocean-cli lands on npm when published 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
ChatGPT web: coming soon — it requires OAuth; PlungeAI OAuth is in progress Today via OpenAI Codex CLI: codex mcp add plungeai --url https://mcp.plungeai.com/v1 --bearer-token-env-var PLUNGEAI_API_KEY Verify inside Codex: /mcp lists plungeai