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 identityvibevo_list_campaignsβ list campaignsvibevo_list_offersβ offer wall (for creators)vibevo_list_my_postsβ your submitted posts (status, views, earnings)vibevo_get_campaignβ one campaignvibevo_get_campaign_analyticsβ campaign analyticsvibevo_list_campaign_postsβ campaign postsvibevo_list_campaign_creatorsβ campaign creatorsvibevo_list_campaign_tracking_linksβ campaign tracking linksvibevo_get_walletβ wallet balancevibevo_list_wallet_transactionsβ transaction historyvibevo_list_factoriesβ list content factoriesvibevo_list_factory_accountsβ factory accountsvibevo_list_factory_postsβ factory posts
Write
vibevo_create_factoryβ create a content factoryvibevo_add_factory_itemsβ add accounts/posts to a factoryvibevo_patch_factory_accountβ pause/resume/remove a factory accountvibevo_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