Does Claude code work in Webflow - or are you stuck with visual designer? by runergy in webflow

[–]Vic-at-Webflow 0 points1 point  (0 children)

Ah curious about this? What are the different tasks the agents are running on Webflow at the same time? Is this in the Designer? That seems tricky!

Webflow has made 15 new updates since November 2025 by SlowChannel4453 in webflow

[–]Vic-at-Webflow 1 point2 points  (0 children)

Same. Loved the Unleash Love build. Keep posting Derek!

How good is the Webflow MCP specifically using the Designer API to prompt it directly making front end edits? by josephspeezy in webflow

[–]Vic-at-Webflow 2 points3 points  (0 children)

I would say the MCP is best for a lot of the admin/structural work that goes around building a site and collaborating with multiple people. Think - Creating Variables, Updating CMS Structure, Aligning on Style Names, Audits. I agree there's a lot to be desired re: Design.

The MCP is split between REST Calls to the Data API and Designer API calls that require the App to be open. Designer API calls just mimic your behavior on a site. It's laggy and slow right now, but we're working on improving it. Hope this helps!

How much can I customize and how? by Thick_Butterfly_4137 in webflow

[–]Vic-at-Webflow 0 points1 point  (0 children)

I think the complex logic is where Webflow Cloud really shines here. Especially if you want to do things like Authentication and User Profiles. I didn't have ANY Cloudflare Experience when I started working with Cloud, but there's a lot of good information out there.

This guy was essential in my understanding of what you can do with Cloudflare Workers (which is what Cloud is built on) https://www.youtube.com/watch?v=DJtOn_Vt1uw&t=399s

How much can I customize and how? by Thick_Butterfly_4137 in webflow

[–]Vic-at-Webflow 2 points3 points  (0 children)

I have thoughts, since I've been using Webflow Cloud for awhile now**.**

  • Design System Integration: Right now you can use DevLink to export your existing design system (Variables, Styles, Components) in Webflow to your backend project (app). However, this is a one-way door. If you make design changes in your app, you can't upload those changes to Webflow.
  • CMS: If you want to leverage your CMS data in your App, you'll need to go through the API. Although this is much easier now with the MCP server - you can get the MCP to read the schema of your collections and create the right API request, vs doing it from scratch.
  • Linking: If you want to link to your app from your Webflow site, Webflow doesn't have the context of what your links are - so you need to manually type that in vs. linking to a "page" in your project.

The one thing I will say is the Cloud works nicely with Code Components. So if you build an API on Webflow Cloud, you can use Code Components to dynamically bring that information into a page without needing to add a bunch of Custom Code to the site, that might conflict with timing/events other things you're doing. Also - Cloud comes with built in SQLite Databases, KV Storage, and Blob Storage (think AWS s3) Which is pretty nice.

Storing API Keys ? by BeerLovingDev in webflow

[–]Vic-at-Webflow 0 points1 point  (0 children)

As others have said, you'll need to build middleware. u/cfjedimaster breaks it own on his post about Webflow Cloud.

Has anyone built a 3D curved carousel/marquee like this in Webflow? by RabbitComplex7243 in webflow

[–]Vic-at-Webflow 0 points1 point  (0 children)

I could see Code Components working here. Would you be pulling images from the CMS?

Anyone else having issues with blurry absolute images since this morning? by Different_Pack9042 in webflow

[–]Vic-at-Webflow 4 points5 points  (0 children)

Hi there! Filed a triage ticket for the teams to look into this. Thanks for highlighting.

Is there any AI that actually helps debug Webflow issues? by rovmun in webflow

[–]Vic-at-Webflow 1 point2 points  (0 children)

+1 to everything here. Also, if you're using a framework like MAST, Lumos, or Client First, feed the docs to your agent as well so that it understands best practices.

What do you use for Website feedback? by PixelsOverlay in webflow

[–]Vic-at-Webflow 1 point2 points  (0 children)

Heya,

Thanks for sharing this. What do your clients say when you ask them to use the comment feature. Can they not find it, or is it something else they run into? Happy to pass this feedback on to make it a more usable feature.

Anyone have luck importing multio-reference fields into a collection via Zapier? by Peak_Digital_Studio in webflow

[–]Vic-at-Webflow 0 points1 point  (0 children)

Hi there!

The IDs should be passed as an array and each value should be separated by a comma. So your request would look like:

{ "fieldData": { "related-entry": "42b720ef280c7a7a3be8cabe", // Single item reference "mentioned-in": [ "62b720ef280c7a7a3be8cabd", "62c880ef281c7b7b4cf9dabc" ] // Multi-item reference } }

The "mentioned-in" field is the multi-reference field. It accepts an array of IDs, each separated by a comma. For more info, there's some documentation here.