get_designer_app_connection_info
Retrieve connection details for the Webflow Designer App to enable API access and manage site integrations.
Instructions
Get Webflow MCP App Connection Info. if user ask to get Webflow MCP app connection info, use this tool
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/localDeMCPConnection.ts:14-29 (registration)Registers the 'get_designer_app_connection_info' tool. Includes inline schema (empty object) and handler that delegates to an internal RPC call for 'local_de_mcp_connection_tool' via formatResponse.server.registerTool( "get_designer_app_connection_info", { title: "Get Designer App Connection Info", description: "Get Webflow MCP App Connection Info. if user ask to get Webflow MCP app connection info, use this tool", inputSchema: z.object({}), }, async () => { try { return formatResponse(await localDeMCPConnectionToolRPCCall()); } catch (error) { return formatErrorResponse(error); } } );
- src/tools/localDeMCPConnection.ts:22-28 (handler)Handler function for the tool, which calls the RPC tool and formats the response.async () => { try { return formatResponse(await localDeMCPConnectionToolRPCCall()); } catch (error) { return formatErrorResponse(error); } }
- Input schema for the tool (empty object).inputSchema: z.object({}),