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
DEElementIDSchema.ts•470 B
import { z } from "zod/v3";
export const DEElementIDSchema = {
id: z
.object({
component: z
.string()
.describe("The component id of the element to perform action on."),
element: z
.string()
.describe("The element id of the element to perform action on."),
})
.describe(
"The id of the element to perform action on, you can find it from id field on element. e.g id:{component:123,element:456}."
),
};