VideoAmp/cli
If you are the rightful owner of cli and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The VideoAmp CLI + MCP Server is designed to enhance workflows and integrations with VideoAmp's APIs, providing a streamlined interface for developers.
VideoAmp Tools
VideoAmp tools are available via an MCP or CLI interface and expose the same capabilities available in the VideoAmp public API. The use of tools are intended to streamline workflows and integrations with APIs.
MCP Getting Started
AI assistants, agents and chatbots compatible with the MCP protocol may use the remote MCP server at https://api.videoamp.dev/v1/mcp.
After connecting to the MCP server using one of the below MCP Configuration Options, try these sample prompts:
- "Show me tools I can use with VideoAmp"
- "List audiences available to me"
- "What campaigns do I have access to?"
- "Help me understand VideoAmp capabilities"
MCP Configuration Options
Claude Desktop with Remote Server
This option enables use of the remote MCP server through Claude Desktop without requiring local installation.
- Open Claude Desktop and list available connectors using Manage Connectors, under the tools menu.
- Connect the VideoAmp MCP server.
Prerequisites
- Claude Desktop
- Pro, Max, Team, or Enterprise license
- The remote server at
https://api.videoamp.dev/v1/mcphas been added as a Custom Connector (Admin privileges may be needed)
Claude Web with Remote Server
This option enables use of the remote MCP server through the Claude web interface without requiring local installation.
- Open Claude.ai and list available connectors using Manage Connectors, under the tools menu.
- Connect the VideoAmp MCP server.
Prerequisites
- Pro, Max, Team, or Enterprise license
- The remote server at
https://api.videoamp.dev/v1/mcphas been added as a Custom Connector (Admin privileges may be needed)
Claude Code with Remote Server
This option enables use of the remote MCP server through Claude Code without requiring local installation.
- Add the MCP server from the terminal using
claude mcp add --transport http VideoAmp https://api.videoamp.dev/v1/mcp
Prerequisites
Codespace with Remote Server
This option provides a complete development environment with Copilot connected to the remote MCP server. No additional installation is required, and the CLI can be accessed using the videoamp command from a terminal.
-
Create a GitHub Codespace.
-
In Copilot, select mode
Agentand a recent model, e.g.,Claude Sonnet 4.5,Chat GPT-5.
Prerequisites
- GitHub account
- GitHub Copilot access
CLI Installation
This option provides the videoamp executable for local installation and use from a terminal or automated process. Additionally this allows the MCP server to be run locally using the videoamp mcp CLI interface.
-
Visit the releases page and download the asset that matches your OS and CPU architecture (for example,
videoamp_v0.43.1_linux_amd64.tar.gz,videoamp_v0.43.1_darwin_arm64.tar.gz, orvideoamp_v0.43.1_windows_amd64.zip). -
Extract the archive and move the
videoampexecutable somewhere on your$PATH:macOS/Linux:
tar -xzf videoamp_<version>_<os>_<arch>.tar.gz sudo mv videoamp /usr/local/bin/ chmod +x /usr/local/bin/videoampWindows (PowerShell):
Expand-Archive -Path .\videoamp_<version>_windows_amd64.zip -DestinationPath . Move-Item -Path .\videoamp.exe -Destination $env:USERPROFILE\AppData\Local\Microsoft\WindowsApps\videoamp.exe -
Confirm the installation:
videoamp --help