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. Connect a client
  3. Cursor

Client setup

Cursor

Wire Vibiz into Cursor's MCP integration so Cursor agents can generate creatives, ship funnels, and launch campaigns.

1

Open Cursor settings

In Cursor, open Settings → MCP → Add new MCP server. Choose the HTTP transport.

2

Paste the Vibiz URL

Cursor stores MCP config at ~/.cursor/mcp.json. Add Vibiz to the mcpServers object — no auth header needed for OAuth.

~/.cursor/mcp.jsonjson
{
  "mcpServers": {
    "vibiz": {
      "url": "https://www.vibiz.ai/api/mcp"
    }
  }
}
3

Authorize and enable in chat

Open the Cursor chat panel, switch to Agent mode, and toggle the Vibiz server on. Cursor opens a browser tab to vibiz.ai for sign-in. After approval, the available tools appear under the wrench icon.

Manual: API key

Prefer a static credential? Mint a token from your workspace's Developer page on vibiz.ai and add it as a Bearer header:

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

Try a prompt

Generate three 1:1 image variants for our spring promo
in the brand voice, then schedule them across Instagram
and Facebook for next week.

On this page

  • 1. Open Cursor settings
  • 2. Paste the Vibiz URL
  • 3. Authorize and enable
  • Manual: API key
  • Try a prompt
{ "mcpServers": { "vibiz": { "url": "https://www.vibiz.ai/api/mcp" } }}
{ "mcpServers": { "vibiz": { "url": "https://www.vibiz.ai/api/mcp", "headers": { "Authorization": "Bearer YOUR_VIBIZ_API_KEY" } } }}