Back to MCP directory
publicPublicdnsLocal runtime

placid-mcp-server

Placid.app MCP服务器是一个用于与Placid.app API集成的服务实现,提供模板管理和多媒体生成功能。

article

README

🚀 Placid.app MCP 服务器

这是一个用于与 Placid.app API 集成的 MCP 服务器实现,可通过模型上下文协议,提供列出模板、使用模板和动态内容生成图像和视频等工具。

smithery badge

🚀 快速开始

本 MCP 服务器可助力你与 Placid.app API 集成,通过模型上下文协议实现模板管理与内容生成。

✨ 主要特性

  • 🔎 可列出可用的 Placid 模板,还带有过滤选项。
  • 🎨 能使用模板和动态内容生成图像和视频。
  • 🔐 具备安全的 API 令牌管理功能。
  • ❌ 可进行错误处理和验证。
  • 🛡️ 实现了类型安全。

📦 安装指南

需求:Node.js

  1. nodejs.org 安装 Node.js(版本 18 或更高)和 npm。
  2. 验证安装:
    node --version
    npm --version
    

快速开始(推荐)

使用 Smithery 是最容易的方式,它会自动为你配置所有内容:

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

手动配置

如果你更喜欢手动配置,请在你的 Claude Desktop 或 Cline 设置中添加如下内容:

{
  "mcpServers": {
    "placid": {
      "command": "npx",
      "args": ["@felores/placid-mcp-server"],
      "env": {
        "PLACID_API_KEY": "your_api_key_here"
      }
    }
  }
}

💻 使用示例

工具使用

placid-list-templates

列出所有可用的模板:

npx @felores/placid-mcp-server list-templates

placid-get-template

获取特定模板的详细信息:

npx @felores/placid-mcp-server get-template --template-id=TEMPLATE_ID

开发使用

安装依赖项

使用 npm 安装所需的依赖项:

npm install

运行测试

运行测试套件:

npm test

打包

打包项目:

npm run build

📚 详细文档

更多关于 Placid API 的详细信息,请访问 Placid API 文档

📄 许可证

本项目采用 MIT 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client