Placid MCP Server

Placid.app MCP server to list templates and generate images and videos

Local serverstdioGo

What is the Placid MCP server?

Placid MCP server exists for a simple reason — assistants are far more useful when they can act on Placid directly instead of describing what you should do. Placid.app MCP server to list templates and generate images and videos.

What you get

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.

  • 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

What the assistant can call

Once Placid is connected, these are the calls the assistant has available:

  • placid_list_templates — Lists available Placid templates with filtering options. Each template includes its title, ID, preview image URL, available layers, and tags
  • Parameters — The Parameters tool exposed by this server
  • Response — Returns an array of templates, each containing: - uuid: Unique identifier for the template - title: Template name - thumbnail: Preview image URL (if
  • placid_generate_video — Generate videos by combining Placid templates with dynamic content like videos, images, and text. For longer videos (>60 seconds processing time)
  • placid_generate_image — Generate static images by combining Placid templates with dynamic content like text and images

Configuration and credentials

You will need one environment variable: PLACID_API_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  1. Install Node.js (version 18 or higher) and npm from nodejs.org 2. Verify installation:

Setting it up

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Placid's toolset — placid_list_templates, Parameters, Response and 2 more — is a fair guide to whether it matches your workflow. It is maintained by felores; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the placid mcp server does with a few real requests.

Available tools

ToolWhat it does
placid_list_templatesLists available Placid templates with filtering options. Each template includes its title, ID, preview image URL, available layers, and tags.
ParametersThe Parameters tool exposed by this server.
ResponseReturns an array of templates, each containing: - uuid: Unique identifier for the template - title: Template name - thumbnail: Preview image URL (if available) - layers: Array of available layers with their names and typ
placid_generate_videoGenerate 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.
placid_generate_imageGenerate static images by combining Placid templates with dynamic content like text and images.

How to install the Placid MCP server

{
  "mcpServers": {
    "placid": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "PLACID_API_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  1. Install Node.js (version 18 or higher) and npm from nodejs.org 2. Verify installation:
VariableDescriptionRequired
PLACID_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Placid to placid list templates.
  • Use Placid to Parameters.
  • Use Placid to Response.

Frequently asked questions

It connects Placid to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (placid_list_templates, Parameters, Response, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Placid directly.