Placid.app MCP Server

by MCP-Mirror

294 downloads
Not rated
GitHub

About

An MCP server implementation that integrates with Placid.app’s API, providing tools for listing templates and generating creatives through the Model Context Protocol. It is designed for developers using AI assistants like Claude Desktop to automate creative asset generation.

Details

Author
MCP-Mirror
Downloads
294
Categories
Other

- List available Placid templates with optional filtering
- Generate creatives from templates and dynamic content
- Secure API token management via environment variable
- Type‑safe implementation with error handling and validation
- Supports filtering templates by collection ID, custom data, or tags

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Placid.app MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via Smithery (npx -y @smithery/cli install @felores/placid-mcp-server --client claude), NPX (npx @felores/placid-mcp-server), or manually by cloning the repository and building. Configure the server with your Placid API token in the PLACID_API_TOKEN environment variable. After setup, invoke the provided tools (placid_list_templates, placid_generate_creative) through an MCP client.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "placid.app mcp server": {
            "felores_placid-mcp-server": {
                "command": "npx",
                "args": [
                    "-y",
                    "@smithery/cli",
                    "install",
                    "@felores/placid-mcp-server",
                    "--client",
                    "claude"
                ]
            }
        }
    }
}

McpServers

{
    "felores_placid-mcp-server": {
        "command": "npx",
        "args": [
            "-y",
            "@smithery/cli",
            "install",
            "@felores/placid-mcp-server",
            "--client",
            "claude"
        ]
    }
}

Placid.app MCP Server

smithery badge

An MCP server implementation for integrating with Placid.app's API. This server provides tools for listing templates and generating creatives through the Model Context Protocol.

<a href="https://glama.ai/mcp/servers/xeklsydon0">

</a>

Features

- 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

Installation Options

Installing via Smithery

To install @felores/placid-mcp-server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @felores/placid-mcp-server --client claude

NPX Installation

The quickest way to get started is using npx:

npx @felores/placid-mcp-server

Then add the server configuration to your Claude Desktop or Cline settings:

{
  "mcpServers": {
    "placid": {
      "command": "npx",
      "args": ["@felores/placid-mcp-server"],
      "env": {
        "PLACID_API_TOKEN": "your-api-token"
      }
    }
  }
}

Manual Installation

1. Clone the repository:

git clone https://github.com/felores/placid-mcp-server.git
cd placid-mcp-server

2. Install dependencies:

npm install

3. Build the project:

npm run build

4. Add the server configuration to your Claude Desktop or Cline settings:

{
"mcpServers": {
"placid": {
"command": "node",
"args": ["path/to/placid-mcp-server/build/index.js"],
"env": {
"PLACID_API_TOKEN": "your-api-token"
}
}
}
}

Replace path/to/placid-mcp-server with the absolute path to your cloned repository.

Getting Your Placid API Token

1. Log in to your Placid.app account
2. Go to Settings > API
3. Click on "Create API Token"
4. Give your token a name (e.g., "MCP Server")
5. Copy the generated token
6. Add the token to your Claude Desktop or Cline configuration as shown in the installation steps above

Development

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.