MCP (Model Context Protocol) server for Prizmad — create AI-powered UGC video ads from any product URL.
This server lets AI agents (Claude, ChatGPT, Cursor, etc.) generate professional video ads programmatically through the Prizmad API.
Connect directly to the hosted MCP server — no installation needed:
{
"mcpServers": {
"prizmad": {
"url": "https://prizmad.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}{
"mcpServers": {
"prizmad": {
"command": "npx",
"args": ["-y", "@prizmad/mcp-server"],
"env": {
"PRIZMAD_API_KEY": "przmad_sk_live_..."
}
}
}
}npm install -g @prizmad/mcp-server{
"mcpServers": {
"prizmad": {
"command": "prizmad-mcp",
"env": {
"PRIZMAD_API_KEY": "przmad_sk_live_..."
}
}
}
}- Sign up at prizmad.com
- Go to API Keys
- Create a new key (format:
przmad_sk_live_...)
Exchange your API key for a short-lived JWT:
curl -X POST https://prizmad.com/oauth/token \
-d grant_type=client_credentials \
-d client_id=my-app \
-d client_secret=przmad_sk_live_...Returns access_token (JWT, 1 hour TTL) to use as Bearer token.
OAuth discovery: /.well-known/oauth-authorization-server
| Tool | Description |
|---|---|
list_templates |
List all video ad templates with features and token costs |
list_avatars |
List AI avatar presets with recommended voices |
create_video |
Generate a video ad from template + product data |
get_video_status |
Poll generation progress until completion |
get_download_url |
Get download URL for a completed video |
create_video_batch |
Launch up to 20 videos in parallel |
Once connected, you can ask your AI agent:
"Create a 30-second video ad for this Amazon product: https://amazon.com/dp/B0EXAMPLE using the personal-pitch template with avatar F01"
The agent will:
- Call
create_videowith the product URL and template - Poll
get_video_statusuntil done - Return the download link via
get_download_url
| Variable | Required | Description |
|---|---|---|
PRIZMAD_API_KEY |
Yes | Your Prizmad API key |
PRIZMAD_BASE_URL |
No | API base URL (default: https://prizmad.com) |
- Prizmad — Main site
- API Documentation — Interactive API docs
- OpenAPI Spec — Machine-readable spec
- MCP Server Card — Discovery metadata
- OAuth Metadata — OAuth 2.0 discovery
- Agent Skills — Agent skills index
MIT