Skip to main content
Glama

Placid MCP Server

schema.ts1.27 kB
export const generateImageSchema = { type: "object", required: ["template_id", "layers"], properties: { template_id: { type: "string", description: "UUID of the template to use" }, layers: { type: "object", description: "Key-value pairs for dynamic content. Keys must match template layer names.", additionalProperties: { oneOf: [ { type: "object", properties: { text: { type: "string", description: "Content for text layers" } }, required: ["text"] }, { type: "object", properties: { image: { type: "string", format: "uri", description: "URL for image/video layers" } }, required: ["image"] } ] } } } } as const; export const generateImageResponse = { type: "object", properties: { status: { type: "string", enum: ["finished"] }, image_url: { type: "string", format: "uri" }, credits_used: { type: "number" } }, required: ["status", "image_url"] } as const;

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/felores/placid-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server