Docs/MCP

Connect Cursor to Conbersa

Add the Conbersa MCP server to Cursor over Streamable HTTP so the agent can run and schedule your device fleet while you work.

Updated September 23, 2026 · 2 min read

Cursor connects to Conbersa as a remote MCP server, so the coding agent can start runs, post content, and manage schedules while you're in the editor.

Prerequisites

  • A Conbersa API key (cb_live_...) from Settings → API keys.
  • A Cursor version that supports remote MCP servers with headers.

Add the server

Create or edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):

{
  "mcpServers": {
    "conbersa": {
      "url": "https://api.conbersa.ai/mcp",
      "headers": { "Authorization": "Bearer cb_live_YOUR_KEY" }
    }
  }
}

Then open Cursor's MCP settings panel and enable the conbersa server. It lists the available tools.

Verify

Ask Cursor:

List my Conbersa devices.

A fleet response means you're connected. If not, check MCP troubleshooting.

Example prompts

Preview a lurk engagement for these three TikTok pad IDs and tell me what each device will do.

Start a content run posting sample.mp4 to TikTok and Instagram, then give me the session link.

List my schedules and stop the one named "Nightly warmup".

Notes

  • Project configs get committed. A .cursor/mcp.json with a live key in a shared repo is a leak. Use the global config, or a project config that pulls the secret from your tooling.
  • One key per machine keeps revocation simple.

Next

FAQ

Frequently asked questions

Add a remote server entry named conbersa to your Cursor MCP config (~/.cursor/mcp.json or the project .cursor/mcp.json) with url https://api.conbersa.ai/mcp and an Authorization: Bearer cb_live_... header. Then enable it in Cursor's MCP settings.
Yes. The header you configure is attached to every MCP request, so Conbersa authenticates each call. Keep the config file out of version control, or point it at an environment variable if your setup supports it.
Cursor can start a run, but it does not hold a live video stream. The run returns a session link you open in the web cockpit. Cursor can call get_session_status to check progress without blocking.