Placid.app MCP Server provides tools for listing templates and generating images and videos through the Model Context Protocol by integrating with Placid.app's API. This server implementation makes it easy to dynamically create visual content using templates and custom data.
The simplest way to install and configure the MCP server is using Smithery:
npx -y @smithery/cli install @felores/placid-mcp-server --client claude
If you prefer to set up manually, add this configuration to your Claude Desktop or Cline settings:
{
"mcpServers": {
"placid": {
"command": "npx",
"args": ["@felores/placid-mcp-server"],
"env": {
"PLACID_API_TOKEN": "your-api-token"
}
}
}
}
The server requires:
To verify you have the correct versions installed:
node --version
npm --version
If needed, install or update Node.js from nodejs.org.
Before using the server, you'll need to get an API token:
The placid_list_templates
tool lets you browse available Placid templates with filtering options.
collection_id
(optional): Filter by collection IDcustom_data
(optional): Filter by custom reference datatags
(optional): Array of tags for filtering{
"tags": ["social", "instagram"]
}
Returns an array of templates with details including:
The placid_generate_image
tool creates static images by combining templates with dynamic content.
template_id
(required): UUID of the template to uselayers
(required): Object with dynamic content for template layers{
"template_id": "template-uuid",
"layers": {
"headline": { "text": "Welcome to My App" },
"background": { "image": "https://example.com/bg.jpg" }
}
}
{
"status": "finished",
"image_url": "https://example.com/generated-image.jpg"
}
The placid_generate_video
tool creates videos by combining templates with dynamic content.
template_id
(required): UUID of the templatelayers
(required): Object with dynamic content for template layersaudio
(optional): URL to an mp3 audio fileaudio_duration
(optional): Set to 'auto' to trim audio to video lengthaudio_trim_start
(optional): Timestamp for trim start pointaudio_trim_end
(optional): Timestamp for trim end point{
"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"
}
For quick videos:
{
"status": "finished",
"video_url": "https://example.com/generated-video.mp4"
}
For longer videos (processing time >60 seconds):
{
"status": "queued",
"job_id": "job-id-for-status-checking"
}
For comprehensive information about the Placid API, visit the Placid API Documentation.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "placid" '{"command":"npx","args":["@felores/placid-mcp-server"],"env":{"PLACID_API_TOKEN":"your-api-token"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"placid": {
"command": "npx",
"args": [
"@felores/placid-mcp-server"
],
"env": {
"PLACID_API_TOKEN": "your-api-token"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"placid": {
"command": "npx",
"args": [
"@felores/placid-mcp-server"
],
"env": {
"PLACID_API_TOKEN": "your-api-token"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect