Skip to content

MCP server for AI agents

MCP (Model Context Protocol) is an open standard that lets an AI agent pull data and tools from external services in a uniform way.

VibeVO ships a standalone @vibevo/mcp package β€” an MCP server that exposes 19 tools over the same public API. The tools use the same endpoints described in the endpoint reference β€” MCP just wraps them in an agent-friendly shape.

Read

  • vibevo_whoami β€” current key identity
  • vibevo_list_campaigns β€” list campaigns
  • vibevo_list_offers β€” offer wall (for creators)
  • vibevo_list_my_posts β€” your submitted posts (status, views, earnings)
  • vibevo_get_campaign β€” one campaign
  • vibevo_get_campaign_analytics β€” campaign analytics
  • vibevo_list_campaign_posts β€” campaign posts
  • vibevo_list_campaign_creators β€” campaign creators
  • vibevo_list_campaign_tracking_links β€” campaign tracking links
  • vibevo_get_wallet β€” wallet balance
  • vibevo_list_wallet_transactions β€” transaction history
  • vibevo_list_factories β€” list content factories
  • vibevo_list_factory_accounts β€” factory accounts
  • vibevo_list_factory_posts β€” factory posts

Write

  • vibevo_create_factory β€” create a content factory
  • vibevo_add_factory_items β€” add accounts/posts to a factory
  • vibevo_patch_factory_account β€” pause/resume/remove a factory account
  • vibevo_refresh_factory_account β€” refresh an account now (max once per hour)
  • vibevo_submit_post β€” submit a video to a campaign for moderation

Connecting to Claude Desktop

The MCP server uses the stdio transport and authenticates with the VIBEVO_API_KEY environment variable. Add the server to your Claude Desktop config:

{
  "mcpServers": {
    "vibevo": {
      "command": "npx",
      "args": ["-y", "@vibevo/mcp"],
      "env": {
        "VIBEVO_API_KEY": "vibevo_live_ab12cd.xxxxxxxxxxxxxxxx"
      }
    }
  }
}

After restarting Claude Desktop, the vibevo_* tools become available in the conversation, and the agent can answer questions about your campaigns, analytics, and wallet.

Keep the key safe
The VIBEVO_API_KEY in the config is your secret. Never publish a config that contains the key.

Was this article helpful?

Updated: July 11, 2026

VibeVO MCP server for AI agents | VibeVO Docs