Docs

Get started

  • Welcome
  • Quickstart

Connect a client

  • Claude
  • Claude Code
  • Cursor

Reference

  • Generation
  • Workspace
  • Analytics
  • Inbox
  • Social
  • Meta ads
Open Vibiz dashboardGitHub
  1. Docs
  2. Get started
  3. Quickstart

Get started

Quickstart

Connect any MCP-compatible client to your Vibiz workspace. There are two ways to authenticate: a one-click OAuth flow (recommended) or a manual API key.

1

Add Vibiz to your client

Point your MCP client at the Vibiz server URL — that's all the information any client needs.

url
https://www.vibiz.ai/api/mcp
  • In Claude, use Settings → Connectors → Add custom connector.
  • In Claude Code, run npx @vibiz/vibiz — installs the official plugin (slash commands, subagent, post-commit nudge) and the MCP connection in one step. See the Claude Code page.
  • In Cursor, use Settings → MCP → Add new MCP server and paste the URL.
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 show up 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, open Developer → API keys) and add it as a Bearer header. Use this for headless agents, CI, or clients that don't support OAuth.

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

Test it directly with curl:

bash
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

  • Browse the tool reference for every available action.
  • Detailed setup for Claude, Claude Code, or Cursor.

On this page

  • 1. Add Vibiz to your client
  • 2. Sign in to Vibiz
  • 3. Verify the connection
  • Manual: API key
  • Next steps
{ "mcpServers": { "vibiz": { "url": "https://www.vibiz.ai/api/mcp", "headers": { "Authorization": "Bearer YOUR_VIBIZ_API_KEY" } } }}
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"}'