Vibiz
Vibiz
Vibiz docs
Overview
Overview
QuickstartTool reference
Overview

Quickstart

Connect any MCP-compatible client to your Vibiz workspace in three steps.

There are two ways to authenticate: a one-click OAuth flow, which is recommended, or a manual API key.

1. Add Vibiz to your client

Point your MCP client at the Vibiz server URL. That is all the information any client needs.

https://www.vibiz.ai/api/mcp
  • In Claude, use Settings → Connectors → Add custom connector.
  • In Cursor, add it under Settings → MCP.
  • In Claude Code, run npx @vibiz/vibiz. It installs the official plugin, with slash commands, a subagent and a post-commit nudge, and the MCP connection in one step. See the Claude Code page.

2. Sign in to Vibiz

Your client opens a browser tab to vibiz.ai. Sign in with the same account you use for the app. Approve the connection and the browser hands the session back to your client.

3. Verify the connection

The Vibiz tools should now appear in your client's tool picker. Try a prompt like "generate an ad image for our hero product" to confirm.

Manual: API key

Prefer a static credential? Mint a token from your workspace's Developer page: sign in to vibiz.ai, then open Developer → API keys, and add it as a Bearer header. Use this for headless agents, CI, or clients that do not support OAuth.

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

Test it directly with curl:

curl https://www.vibiz.ai/api/mcp \
  -H "Authorization: Bearer YOUR_VIBIZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Next steps

Tool reference

Every tool the server exposes, with parameters.

Claude Code

Slash commands, subagent and post-commit nudge.

Overview

Connect any AI client to your Vibiz workspace via the Model Context Protocol.

Tool reference

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

On this page

1. Add Vibiz to your client2. Sign in to Vibiz3. Verify the connectionManual: API keyNext steps