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.
{
"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"}'