Generate Images and Videos with Placid.app
Generate branded images and videos from Placid templates - dynamic text, image, and video layers, driven by natural language.
Why it matters
Leverage the Placid.app API to dynamically generate images and videos using custom templates and dynamic content. This asset automates media creation for various applications.
Outcomes
What it gets done
Retrieve and filter available Placid templates.
Generate static images with dynamic text and image overlays.
Create dynamic videos by combining templates with various media types.
Manage Placid API authentication securely.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-placid-app | bash Capabilities
Tools your agent gets
Retrieves a list of available Placid templates with filtering by collection ID, custom data, or tags
Generates video by combining Placid templates with dynamic content — videos, images, and text
Generates static images by combining Placid templates with dynamic content — text and images
Overview
Placid.app MCP Server
An MCP server for Placid.app: list design templates and generate branded images and videos by filling text, image, and video content into template layers. Use it when an assistant needs to browse a Placid template library and generate a finished branded image or video from it - requires a Placid API token.
What it does
Placid.app MCP Server connects an AI assistant to Placid.app's API for listing design templates and generating branded images and videos by filling in dynamic content (text, images, video clips, audio) into template layers. It's built with secure API-token management, input validation and error handling, and a type-safe implementation.
When to use - and when NOT to
Use it when you want an AI assistant to browse your Placid template library (filtered by collection, custom data, or tags) and generate a finished image or video by supplying content for each named layer - a headline, a background photo, a video clip, a logo. Video generation for clips longer than ~60 seconds of processing time returns a job ID to check in the Placid dashboard rather than an immediate download URL. Do not use it without a Placid API token - generate one from Placid.app under Settings > API > Create API Token.
Capabilities
placid_list_templates: list available templates, optionally filtered bycollection_id,custom_data, ortags; returns each template's UUID, title, thumbnail, available layers, and tags.placid_generate_image: generate a static image from atemplate_idand alayersobject supplying text and/or image content per named layer (e.g.{"headline": {"text": "Welcome to My App"}, "background": {"image": "https://example.com/bg.jpg"}}); returns a status andimage_urlwhen finished.placid_generate_video: generate a video from atemplate_idandlayerssupplying video/image/text content per layer, with optional backgroundaudio,audio_duration("auto"to trim to video length), andaudio_trim_start/audio_trim_endtimestamps; returns status,video_url(when finished), or ajob_idfor longer renders. A full example call combines multiple layer types in one request:
{
"template_id": "template-uuid",
"layers": {
"MEDIA": { "video": "https://example.com/video.mp4" },
"PHOTO": { "image": "https://example.com/photo.jpg" },
"LOGO": { "image": "https://example.com/logo.png" },
"HEADLINE": { "text": "My Video Title" }
},
"audio": "https://example.com/background.mp3",
"audio_duration": "auto"
}
How to install
Requires Node.js 18+ - verify with node --version and npm --version before installing. Install automatically for Claude via Smithery:
npx -y @smithery/cli install @felores/placid-mcp-server --client claude
Or configure manually:
{
"mcpServers": {
"placid": {
"command": "npx",
"args": ["@felores/placid-mcp-server"],
"env": { "PLACID_API_TOKEN": "your-api-token" }
}
}
}
Get your API token from Placid.app under Settings > API > Create API Token.
Who it's for
Marketers and content creators who want an AI assistant to generate on-brand social images and videos from Placid templates conversationally, instead of manually filling in the Placid editor for each variation.
Source README
Placid.app MCP Server
An MCP server implementation for integrating with Placid.app's API. This server provides tools for listing templates and generating images and videos through the Model Context Protocol.
Features
- List available Placid templates with filtering options
- Generate images and videos using templates and dynamic content
- Secure API token management
- Error handling and validation
- Type-safe implementation
Requirements: Node.js
- Install Node.js (version 18 or higher) and npm from nodejs.org
- Verify installation:
node --version npm --version
Installation
Quick Start (Recommended)
The easiest way to get started is using Smithery, which will automatically configure everything for you:
npx -y @smithery/cli install @felores/placid-mcp-server --client claude
Manual Configuration
If you prefer to configure manually, add this to your Claude Desktop or Cline settings:
{
"mcpServers": {
"placid": {
"command": "npx",
"args": ["@felores/placid-mcp-server"],
"env": {
"PLACID_API_TOKEN": "your-api-token"
}
}
}
}
Getting Your Placid API Token
- Log in to your Placid.app account
- Go to Settings > API
- Click on "Create API Token"
- Give your token a name (e.g., "MCP Server")
- Copy the generated token
- Add the token to your configuration as shown above
Development
# Run in development mode with hot reload
npm run dev
# Run tests
npm test
Tools
placid_list_templates
Lists available Placid templates with filtering options. Each template includes its title, ID, preview image URL, available layers, and tags.
Parameters
collection_id(optional): Filter templates by collection IDcustom_data(optional): Filter by custom reference datatags(optional): Array of tags to filter templates by
Response
Returns an array of templates, each containing:
uuid: Unique identifier for the templatetitle: Template namethumbnail: Preview image URL (if available)layers: Array of available layers with their names and typestags: Array of template tags
placid_generate_video
Generate videos by combining Placid templates with dynamic content like videos, images, and text. For longer videos (>60 seconds processing time), you'll receive a job ID to check status in your Placid dashboard.
Parameters
template_id(required): UUID of the template to uselayers(required): Object containing dynamic content for template layers- For video layers:
{ "layerName": { "video": "https://video-url.com" } } - For image layers:
{ "layerName": { "image": "https://image-url.com" } } - For text layers:
{ "layerName": { "text": "Your content" } }
- For video layers:
audio(optional): URL to an mp3 audio fileaudio_duration(optional): Set to 'auto' to trim audio to video lengthaudio_trim_start(optional): Timestamp of trim start point (e.g. '00:00:45' or '00:00:45.25')audio_trim_end(optional): Timestamp of trim end point (e.g. '00:00:55' or '00:00:55.25')
Response
Returns an object containing:
status: Current status ("finished", "queued", or "error")video_url: URL to download the generated video (when status is "finished")job_id: ID for checking status in Placid dashboard (for longer videos)
Example Usage for LLM models
{
"template_id": "template-uuid",
"layers": {
"MEDIA": { "video": "https://example.com/video.mp4" },
"PHOTO": { "image": "https://example.com/photo.jpg" },
"LOGO": { "image": "https://example.com/logo.png" },
"HEADLINE": { "text": "My Video Title" }
},
"audio": "https://example.com/background.mp3",
"audio_duration": "auto"
}
placid_generate_image
Generate static images by combining Placid templates with dynamic content like text and images.
Parameters
template_id(required): UUID of the template to uselayers(required): Object containing dynamic content for template layers- For text layers:
{ "layerName": { "text": "Your content" } } - For image layers:
{ "layerName": { "image": "https://image-url.com" } }
- For text layers:
Response
Returns an object containing:
status: "finished" when completeimage_url: URL to download the generated image
Example Usage for LLM models
{
"template_id": "template-uuid",
"layers": {
"headline": { "text": "Welcome to My App" },
"background": { "image": "https://example.com/bg.jpg" }
}
}
Documentation
For more detailed information about the Placid API, visit the Placid API Documentation.
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.