UNPKG

@felores/placid-mcp-server

Version:

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

54 lines (53 loc) 1.61 kB
export const listTemplatesSchema = { type: "object", properties: { collection_id: { type: "string", description: "Optional: Filter templates by collection ID" }, custom_data: { type: "string", description: "Optional: Filter by custom reference data" }, tags: { type: "array", items: { type: "string" }, description: "Optional: Filter templates by tags" } } }; export const listTemplatesResponse = { type: "object", properties: { templates: { type: "array", items: { type: "object", properties: { uuid: { type: "string" }, title: { type: "string" }, thumbnail: { type: "string", nullable: true }, layers: { type: "array", items: { type: "object", properties: { name: { type: "string" }, type: { type: "string" } }, required: ["name", "type"] } }, tags: { type: "array", items: { type: "string" } } }, required: ["uuid", "title", "layers"] } } }, required: ["templates"] };