Skip to main content
Glama
WebflowPageDomWriteNodesItemSchema.ts1.19 kB
import { z } from "zod"; export const WebflowPageDomWriteNodesItemSchema = z .union([ z .object({ nodeId: z.string().describe("Unique identifier for the node."), text: z .string() .describe( "HTML content of the node, including the HTML tag. The HTML tags must be the same as what’s returned from the Get Content endpoint." ), }) .describe("Text node to be updated."), z .object({ nodeId: z.string().describe("Unique identifier for the node."), propertyOverrides: z.array( z .object({ propertyId: z .string() .describe("Unique identifier for the property."), text: z .string() .describe( "Value used to override a component property; must be type-compatible to prevent errors." ), }) .describe( "Properties to override for this locale’s component instances." ) ), }) .describe("Update text property overrides of a component instance."), ]) .array();

Latest Blog Posts

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/webflow/mcp-server'

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