Prizmad
OfficialPrizmad MCP-Server
Generieren Sie KI-UGC-Videoanzeigen aus jeder Produkt-URL — direkt von Ihrem KI-Agenten.
Model Context Protocol-Server für Prizmad. Er verwandelt jede Produkt-URL — Amazon, Shopify, WooCommerce, benutzerdefinierte Shops — in 3-8 Minuten in eine plattformfertige Videoanzeige. Über 50 Avatare, ElevenLabs-Voiceover, 8 Untertitelstile, 9 Musikstile, 3 CTA-Stile, 10 Bildstil-Voreinstellungen, Freitext-Prompt-Hinweise für Bild / Video / Musik. Die Ausgabe erfolgt in 9:16 / 1:1 / 16:9 Full HD, bereit für TikTok, Instagram Reels, Facebook Ads, YouTube Shorts, Shopify, Amazon. Volle kommerzielle Rechte enthalten.
Dieser Server ist die Agenten-Schnittstelle — wählen Sie eine Vorlage, fügen Sie Produktbilder hinzu, passen Sie das Aussehen an, rendern Sie und erhalten Sie einen markensicheren Link zurück. Funktioniert mit Claude Desktop, Claude.ai, ChatGPT, Cursor, Zed, Continue, n8n, benutzerdefinierten MCP-SDK-Clients.
Remote MCP:
https://prizmad.com/api/mcpTransport: streamable-http
Auth: OAuth 2.1 + PKCE + Dynamic Client Registration (die "Verbinden"-Schaltfläche) ODER API-Key Bearer ODER OAuth client_credentials.
npm:
@prizmad/mcp-server
⚡ Schnellstart — wählen Sie Ihren Client
Claude Desktop / Claude.ai / ChatGPT / Cursor / Zed (Verbinden-Schaltfläche)
Fügen Sie einfach einen benutzerdefinierten Connector mit dieser URL hinzu — der OAuth + DCR-Ablauf läuft automatisch, keine Installation, kein API-Key erforderlich:
https://prizmad.com/api/mcpIn Claude Desktop: Einstellungen → Connectors → Benutzerdefinierten Connector hinzufügen → URL: https://prizmad.com/api/mcp. Der Browser öffnet sich, Sie melden sich bei Prizmad an, klicken auf Autorisieren, der Connector konfiguriert sich selbst.
Manuelle Konfiguration bei Bedarf:
{
"mcpServers": {
"prizmad": {
"transport": "streamable-http",
"url": "https://prizmad.com/api/mcp"
}
}
}Für Clients, die kein OAuth unterstützen, verwenden Sie stattdessen einen API-Key:
{
"mcpServers": {
"prizmad": {
"transport": "streamable-http",
"url": "https://prizmad.com/api/mcp",
"headers": { "Authorization": "Bearer przmad_sk_live_..." }
}
}
}stdio-Bridge (@prizmad/mcp-server) — für stdio-only Clients
{
"mcpServers": {
"prizmad": {
"command": "npx",
"args": ["-y", "@prizmad/mcp-server"],
"env": { "PRIZMAD_API_KEY": "przmad_sk_live_..." }
}
}
}Oder global installiert:
npm install -g @prizmad/mcp-server{
"mcpServers": {
"prizmad": {
"command": "prizmad-mcp",
"env": { "PRIZMAD_API_KEY": "przmad_sk_live_..." }
}
}
}.cursor/mcp.json Snippet (projektbezogen)
{
"mcpServers": {
"prizmad": {
"url": "https://prizmad.com/api/mcp"
}
}
}Related MCP server: Agenthook
🛠 Verfügbare Tools
Tool | Auth | Was es tut |
| Nein | Vollständiger Vorlagenkatalog mit Funktionen, Dauer, Token-Kosten. |
| Nein | Integrierte Avatar-Voreinstellungen mit Name, Geschlecht, Alter, empfohlener Stimme. |
| Nein | Top-3 Vorlagenvorschläge basierend auf Absicht + Stimme / Avatar / Dauer / Budgetbeschränkungen. Verwenden Sie dies vor |
| Ja | Aktuelle Projekte mit |
| Ja | Laden Sie ein Bild hoch (URL oder base64) — gibt eine von prizmad.com gehostete URL zurück, die für |
| Ja | Starten Sie ein Rendering. Gibt |
| Ja | Snapshot-Status standardmäßig; |
| Ja | Authentifizierte Download-URL auf prizmad.com für ein abgeschlossenes Video. |
| Ja | Starten Sie 1-20 Renderings parallel. Jedes Element unterstützt die vollständige create_video-Parameteroberfläche — perfekt für A/B-Varianten-Tests. |
🎨 Kreative Anpassung bei create_video
Jeder Parameter ist optional; lassen Sie ein Feld weg für eine zufällige Auswahl zum Zeitpunkt des Renderns.
Parameter | Werte |
|
|
|
|
|
|
|
|
| Freitext-Steuerung für KI-Kreative (≤ 400 Zeichen). |
| Freitext-Steuerung für KI-Produktvideoclips. |
| Freitext-Steuerung für den Musikgenerator. |
| Standard. |
🔗 Ausgabe-URLs (was mit dem Benutzer geteilt werden soll)
Jede Statusantwort enthält drei Arten von URLs, in Prioritätsreihenfolge:
Feld | Ziel |
|
|
|
|
|
|
Die rohe Vercel Blob-URL wird dem Agenten niemals angezeigt.
🔐 Authentifizierung
Methode | Wann | Erhalten |
OAuth 2.1 Authorization Code + PKCE + DCR | Interaktive Clients (Verbinden-Schaltfläche) | Automatisch — kein Setup |
API-Key (Bearer) | Lokale stdio-Bridge, Skripte, Dev | |
OAuth 2.0 client_credentials | Headless Server-zu-Server |
Die API-Videogenerierung erfordert einen Pro-Plan. Die UI-Generierung funktioniert mit jedem Plan; die Pro-Schranke existiert nur beim programmatischen Zugriff.
🧠 Typischer Agenten-Workflow
recommend_template ─► (optional upload_image) ─► create_video
└─► get_video_status (wait: true)
└─► projectUrl + downloadUrlSobald die Verbindung hergestellt ist, können Sie Ihren Agenten Dinge fragen wie:
"Erstelle eine 30-sekündige, energiegeladene Showcase-Anzeige für dieses Amazon-Produkt: https://amazon.com/dp/B0EXAMPLE — moody-dramatic Look, filmische Musik."
Der Agent wählt eine Vorlage, fügt die URL mit den Stilhinweisen ein, startet das Rendering, wartet auf die Live-Fortschrittsbenachrichtigungen und gibt einen https://prizmad.com/projects/<id> Link zurück.
🌐 Discovery & Metadaten
Server-Karte: https://prizmad.com/.well-known/mcp/server-card.json
OAuth-Metadaten: https://prizmad.com/.well-known/oauth-authorization-server
Metadaten geschützter Ressourcen (RFC 9728): https://prizmad.com/.well-known/oauth-protected-resource
Agenten-Skills-Index: https://prizmad.com/.well-known/agent-skills/index.json
OpenAPI: https://prizmad.com/openapi.json
API-Katalog (RFC 9727): https://prizmad.com/.well-known/api-catalog
📦 Umgebungsvariablen (nur stdio-Bridge)
Variable | Erforderlich | Beschreibung |
| Ja | Ihr Prizmad API-Key |
| Nein | API-Basis-URL (Standard |
📚 Ressourcen
Prizmad — Hauptseite
API-Dokumentation — Interaktive API-Dokumentation (Scalar)
MCP-Server-Skill — vollständige Referenz für Agenten
OAuth-Skill — drei Auth-Abläufe im Detail
🏷 Themen / Kategorien
mcp · mcp-server · model-context-protocol · claude · chatgpt-apps · ai-agents · oauth · remote-mcp · ai-video · video-ads · ugc-ads · ad-creative · ai-avatars · voiceover · elevenlabs · tiktok · instagram-reels · youtube-shorts · shopify · amazon · marketing
Lizenz
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Create AI talking-avatar marketing videos from a script or product idea.
- NotchOAuthai.usenotch
Turn product pages and creative briefs into finished video and image ads from your AI chat.
Turn one sentence into finished ads: video ads, UGC, product photos, voiceover, brand kits, A/B.
Generate and manage AI UGC video ads through eleven typed MCP tools
Related MCP Servers
- AlicenseAqualityBmaintenanceDrives an AI CMO to add products, generate on-brand content (UGC video, posts, images), approve, and publish across 30+ platforms via natural language.2289MIT
- AlicenseNot gradedqualityBmaintenanceAgenthook lets AI agents make character-consistent UGC videos, images, and captions from any MCP client. Create a reusable AI influencer once, then ask for that same face by name in every video and image run.1Apache 2.0

Hermosoofficial
AlicenseAqualityBmaintenanceAI ad studio for agents: generate finished video, image, and UGC avatar ads for any brand (script, voiceover, music, brand end card), and research competitor ads across the Meta, Google, and LinkedIn ad libraries plus TikTok/Instagram/YouTube organic. 52 tools.1694,632MIT- AlicenseNot gradedqualityBmaintenanceEnables users to turn a product brief into a professional ad campaign, generating a validated fal.ai workflow.json with consistent characters, sound, and subtitles while showing costs before any model runs.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/prizmad/Prizmad-MCP-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server