Vibiz
Vibiz
Vibiz docs
Overview
Overview
QuickstartTool reference
Claude CodeClaudeCursor
OverviewClients

Claude Code

Install the Vibiz plugin for Claude Code in one command, with the MCP connection, slash commands, a marketing subagent and a post-commit nudge.

One-line install

Open a terminal and run:

npx @vibiz/vibiz

The script verifies Claude Code is installed, registers the Vibiz marketplace, installs the plugin, and prints what to do next.

Prerequisites

  • Claude Code installed. Either brew install claude-code or npm i -g @anthropic-ai/claude-code.
  • A Vibiz account. The plugin authenticates over OAuth, so there is no token to copy.

Authorize

Open Claude Code, run /mcp, pick vibiz, choose Authenticate, and sign in. Confirm with /vibiz:status.

Slash commands

CommandWhat it does
/vibiz:statusShow the active vibiz, MCP connection state, and recent activity.
/vibiz:onboardCreate a new vibiz from the project URL, or start onboarding for an unmatched repo.
/vibiz:postTurn the latest commit, or a chosen diff, into a social media post draft.
/vibiz:adGenerate a brand-aware ad creative, image and copy, from the active vibiz.
/vibiz:launchLaunch a Meta ads campaign with approved creatives and a budget.

The marketing subagent

A dedicated subagent that translates code, commits and changelogs into on-brand marketing copy. Invoke it implicitly through the slash commands above, or explicitly with @vibiz-marketer.

Auto-match

On install, and at session start, the plugin reads the project's homepage URL from package.json (the homepage field), then pyproject.toml, then Cargo.toml, and finally the first non-badge link in the README. That URL is matched against the vibizes on your account:

  • Exactly one match: every command silently scopes to that vibiz.
  • No match: the plugin offers /vibiz:onboard to create one from the URL.
  • Multiple matches: you pick once, and it is remembered for the project.

Headless: API key

For CI or an unattended agent, skip OAuth and pass a Bearer token minted from Developer → API keys.

.mcp.json
{
  "mcpServers": {
    "vibiz": {
      "url": "https://www.vibiz.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_VIBIZ_API_KEY"
      }
    }
  }
}

Tool reference

Every MCP tool the Vibiz server exposes, grouped by surface, with parameters.

Claude

Add Vibiz to Anthropic's Claude app so it can generate creatives, schedule posts and read analytics from any conversation.

On this page

One-line installPrerequisitesAuthorizeSlash commandsThe marketing subagentAuto-matchHeadless: API key