We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/webflow/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ComponentPropertyUpdateSchema.ts•335 B
import { z } from "zod/v3";
export const ComponentPropertyUpdateSchema = z
.array(
z.object({
propertyId: z.string().describe("Unique identifier for the property."),
text: z.string().describe("New value for the property in this locale."),
})
)
.describe("Array of properties to update for this component.");