Overview
Placid.app MCP Server is an implementation designed to integrate with the Placid.app API, allowing users to list templates and generate creatives through the Model Context Protocol.
To use the MCP Server, you can install it via Smithery or NPX, and then configure it with your Placid API token to start generating creatives.
- List available Placid templates with filtering options - Generate creatives using templates and dynamic content - Secure API token management - Error handling and validation - Type-safe implementation
- Automating the generation of marketing creatives
- Integrating with applications that require dynamic content generation
- Streamlining the process of template management for design teams
Add to your AI client
Use these steps to connect Placid.app MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"felores-placid-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"felores-placid-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"felores-placid-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"felores-placid-mcp-server-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"felores-placid-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"felores-placid-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-felores-placid-mcp-server-mcp-mirror"
]
}
}
}FAQ
How do I get my Placid API token?
Log in to your Placid.app account, go to Settings > API, and create a new API token.
Can I filter templates when listing them?
Yes! You can filter templates by collection ID, custom data, and tags.
Is there a manual installation option?
Yes, you can clone the repository and install dependencies manually.