Agentic Interfaces: Tools, Skills, Generative UI and Web MCP

This ad is not shown to multipass and full ticket holders
JSNation US
JSNation US 2026
November 16 - 19, 2026
New York, US & Online
Upcoming event
JSNation US 2026
JSNation US 2026
November 16 - 19, 2026. New York, US & Online
Bookmark
Rate this content
Sentry
Promoted
Code breaks, fix it faster

Crashes, slowdowns, regressions in prod. Seer by Sentry unifies traces, replays, errors, profiles to find root causes fast.

Get started

Who is ordering Starbucks with ChatGPT? Will an Agent just make the perfect UI for you? Do we even need websites anymore? This app could have been an API!

We like using AI, but we also like using websites! Do we add AI to our site, or does our site get added to AI? This talk looks at the current landscape of agentic interfaces and the future of UI, websites and browsers.

This talk has been presented at JSNation 2026, check out the latest edition of this JavaScript Conference.

Wes Bos
Wes Bos
31 min
11 Jun, 2026

Comments

Sign in or register to post your comment.
Video Summary and Transcription
Wes discusses the evolving ways of interacting with software, from UI to voice commands and tailored interfaces. He explores generative UI, explaining its three levels: basic, declarative, and fully generative. Discussions on finding a middle ground between known components and fully generative approaches. Discussing challenges with current MCP interfaces and the need for adaptive and reactive interfaces, using smart home examples to illustrate preferences for UI interactions and personalized automation. Exploring the versatility of WebMCP in switching between manual and agent-controlled interactions for enhanced user experiences. Discussing staying hopeful in front-end development, embracing new technologies, and the concept of dynamic UI for user-driven component selection. Discussing the importance of preserving the openness of the web, advocating against centralized control by a few companies, and the risks associated with MCPs in user consent and security.

1. Evolution of Agentic Interfaces

Short description:

Wes discusses the evolving ways of interacting with software, from UI to voice commands and tailored interfaces. He explores generative UI, explaining its three levels: basic, declarative, and fully generative. Wes also showcases a simple grocery list application to exemplify inlining components.

[♪ music ♪ Hey everybody, thank you so much for coming out! Stoked to be here! Like Scott said, my name is Wes. I'm half of or part of Syntax, actually not half, we have a big team now. I'm here today to talk to you about agentic interfaces, and like, don't leave yet, because I know how obnoxious some of these hucksters are, and I'm not here to sell you anything today, but like, you've probably heard at least one of these things today, right? UI is dead, chat is the final interface, just give me a skill, bro. All of these things, the web is dead, my grandma's vibe-coded, all kinds of stuff, and we're kind of sitting here being like, well I paid all this money for this conference, and I'm leaving kind of bummed out, you know? Like, do we even need websites anymore? So, yes, that's the talk, thank you for coming, but the way that we interact with the web certainly is changing, so let's take a look at some ways that we actually interface with software.

So, sometimes, I don't want a UI at all, right? This is a piece of software called Handbrake that I use, and I use it to like, convert, and resize, and transcode videos, and every time that I open it, I just go like, which of these buttons do I need to fill out? And like, I don't use it anymore, because I do this, clod-p, compress this to 300 megs, you know? And it just FFmpegs, I don't know what it's doing, but it's doing a bunch of stuff, and out the other end comes the thing I wanted, right? Sometimes, I just want to use my voice, I just yell at the Google, the Siri, or whatever it is, what do Europeans use over here, something like that? Vlad, that's not a European name. That was a bad joke. Sometimes, I want to use your UI, but I hate the busy work, so I use this thing called FreshBooks to categorize all of my expenses, and it kills me, because I have to click a whole bunch of things and open things in new tabs, and if it's Canadian, I have to make sure that it includes the Canadian sales tax, and I'm just like, this is just a whole bunch of busy work I should not be doing, I want to just write a prompt and have it do what I want, right? Sometimes, I do want the UI in my AI, so MCP apps, like we learned about this morning, they have this great thing where you can ask Clawd to make something, and it's going to create a nice little animation for you, or you can ask it to summarize some stats, and it's going to inline it right for you. Sometimes, I want the UI tailored to my needs. This is why absolutely everybody right now is just vibe coding their perfect version of some software, and I think that's awesome because people have had frustrations with software for so long, and now you can finally just make your own version of something that does exactly what it is that you want. Sometimes, I want my apps to kiss, right? Like, this is the explosion of skills and tools and CLIs and all of that stuff that we're seeing right now, and this is probably the best use case that we have right now, which is I have one agent, and then I have all of these different things connected to it via MCP or tools or skills or agentic browsers, all of the different stuff, and it's like one little command center where I can run everything from. So we have all of these different ways, so how do we as developers implement all of these interfaces? So let's take a look at one, which is generative UI, right? So generative UI is when the AI dynamically will create, transform, or simply just select the AI in real-time in response to a user input as well as contextual clues. So the very basic, we saw this slide earlier today where it's like there's kind of three ways you can do it, right? The first one is the very basic, like how many of you have built an MCP server with tool calls before, right? A handful of you. In that case, you're going to declare what the tools are, get weather, you may be able to pass it some params, and the server is going to return data. With a static UI, you might also return like a static component that then renders out to some weather thing, and you render it out inside the chat or on your webpage or whatever it is that you want. Then like a step further, you have like declarative UI, which you may have like a whole bag of components that you use for your website, and you'll give all of those to an LLM, and you ask the agent or the LLM to figure out which of these building blocks will you compose together to make it? And then you say, I need to reschedule my flight, and it's going to return to you some sort of spec, right? It's often JSON, sometimes it's streaming text, and that's going to return to you. You say, all right, well, given I know that you have these components, I'm going to click them together for you, and then we're going to render out what I think is going to be like a nice UI for yourself. And the third one is like fully generative, like whole hog all the way out. And I like to refer to this one, or you've probably heard this term as like code mode. Just like this, let let the AI generate it all and give it a spot to run some code. So in order to understand what these things are, let's take a look at this application right here. Pretty simple grocery list. You got multiple stores. You're able to add stores. You can add items. You can drag and drop. You can mark them. You get the point, right? It's you add stuff to a list. And a simple example of like inlining components where you may go to the chat and say, hey, I want to add some items to my thing. But like I don't want to just use the chat. I want to be able to like see the components.

2. Code Mode and Dynamic Interfaces

Short description:

Exploring code mode within LLMs, allowing dynamic component generation and fully generative interfaces. Discussions on finding a middle ground between known components and fully generative approaches.

So instead of running the tool call, maybe it's going to return to you a component inside of there. And same thing when you were to view the list, like show me my Walmart list. It's going to return to you a list. But you can interact with that list in there. You can check things off. You don't have to explicitly tell it what to do. Code mode is kind of cool because, yes, the LLMs are good at returning like tool calls and JSON specs for the UI. But you know what LLMs are really good at? Maybe you guys have heard, LLMs are good at writing code, right? So instead of giving the agents a bunch of tools and known components, what if you also gave it a spot where it can just run code? And it will simply run that in a space for you and return the UI for you. So in here, I've taken that thing. I said, give me a map of all of the items on my grocery list on a map overlaid on it. And then it ran, get items. And now it's making a map for me. And then it renders out probably the worst map of the world that I've ever seen. But I left it in there. I was like, that's not very good. But the point is that that's not an existing component that was in there, obviously. This is just a LLM. Or I say, give me a wacky shopping list, right? And we'll see what it builds here. Oh, a silly, wacky shopping list where everything is. And it's still usable because it's still, like, calling the tools and integrated with everything that is available there, right? So, like, some thoughts on that. Like, there's probably middle ground between the two. Like, if you work for a bank, you probably don't want the wacky list showing up. Be like, show me my wacky, like, banking accounts and stuff like that. You want a little bit of control over, like, the components that are shown. So there's probably somewhere in between that you want to hit, which is dynamic components, things that are known versus being able to click them together and fully generative. This also just isn't about MCP. I don't think we're anywhere maybe close, but we haven't, like, landed on, like, what the final thing is. You know? I don't think anybody is totally happy with where we're at. And these specs are still evolving. And this also isn't just about chat interfaces.

QnA

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Building a Voice-Enabled AI Assistant With Javascript
JSNation 2023JSNation 2023
21 min
Building a Voice-Enabled AI Assistant With Javascript
Top Content
This Talk discusses building a voice-activated AI assistant using web APIs and JavaScript. It covers using the Web Speech API for speech recognition and the speech synthesis API for text to speech. The speaker demonstrates how to communicate with the Open AI API and handle the response. The Talk also explores enabling speech recognition and addressing the user. The speaker concludes by mentioning the possibility of creating a product out of the project and using Tauri for native desktop-like experiences.
The Ai-Assisted Developer Workflow: Build Faster and Smarter Today
JSNation US 2024JSNation US 2024
31 min
The Ai-Assisted Developer Workflow: Build Faster and Smarter Today
Top Content
AI is transforming software engineering by using agents to help with coding. Agents can autonomously complete tasks and make decisions based on data. Collaborative AI and automation are opening new possibilities in code generation. Bolt is a powerful tool for troubleshooting, bug fixing, and authentication. Code generation tools like Copilot and Cursor provide support for selecting models and codebase awareness. Cline is a useful extension for website inspection and testing. Guidelines for coding with agents include defining requirements, choosing the right model, and frequent testing. Clear and concise instructions are crucial in AI-generated code. Experienced engineers are still necessary in understanding architecture and problem-solving. Energy consumption insights and sustainability are discussed in the Talk.
The Rise of the AI Engineer
React Summit US 2023React Summit US 2023
30 min
The Rise of the AI Engineer
Top Content
The rise of AI engineers is driven by the demand for AI and the emergence of ML research and engineering organizations. Start-ups are leveraging AI through APIs, resulting in a time-to-market advantage. The future of AI engineering holds promising results, with a focus on AI UX and the role of AI agents. Equity in AI and the central problems of AI engineering require collective efforts to address. The day-to-day life of an AI engineer involves working on products or infrastructure and dealing with specialties and tools specific to the field.
AI and Web Development: Hype or Reality
JSNation 2023JSNation 2023
24 min
AI and Web Development: Hype or Reality
Top Content
This talk explores the use of AI in web development, including tools like GitHub Copilot and Fig for CLI commands. AI can generate boilerplate code, provide context-aware solutions, and generate dummy data. It can also assist with CSS selectors and regexes, and be integrated into applications. AI is used to enhance the podcast experience by transcribing episodes and providing JSON data. The talk also discusses formatting AI output, crafting requests, and analyzing embeddings for similarity.
The AI-Native Software Engineer
JSNation US 2025JSNation US 2025
35 min
The AI-Native Software Engineer
Top Content
Software engineering is evolving with AI and VIBE coding reshaping work, emphasizing collaboration and embracing AI. The future roadmap includes transitioning from augmented to AI-first and eventually AI-native developer experiences. AI integration in coding practices shapes a collaborative future, with tools evolving for startups and enterprises. AI tools aid in design, coding, and testing, offering varied assistance. Context relevance, spec-driven development, human review, and AI implementation challenges are key focus areas. AI boosts productivity but faces verification challenges, necessitating human oversight. The impact of AI on code reviews, talent development, and problem-solving evolution in coding practices is significant.
Web Apps of the Future With Web AI
JSNation 2024JSNation 2024
32 min
Web Apps of the Future With Web AI
Web AI in JavaScript allows for running machine learning models client-side in a web browser, offering advantages such as privacy, offline capabilities, low latency, and cost savings. Various AI models can be used for tasks like background blur, text toxicity detection, 3D data extraction, face mesh recognition, hand tracking, pose detection, and body segmentation. JavaScript libraries like MediaPipe LLM inference API and Visual Blocks facilitate the use of AI models. Web AI is in its early stages but has the potential to revolutionize web experiences and improve accessibility.

Workshops on related topic

AI on Demand: Serverless AI
DevOps.js Conf 2024DevOps.js Conf 2024
163 min
AI on Demand: Serverless AI
Top Content
Featured WorkshopFree
Nathan Disidore
Nathan Disidore
In this workshop, we discuss the merits of serverless architecture and how it can be applied to the AI space. We'll explore options around building serverless RAG applications for a more lambda-esque approach to AI. Next, we'll get hands on and build a sample CRUD app that allows you to store information and query it using an LLM with Workers AI, Vectorize, D1, and Cloudflare Workers.
AI for React Developers
React Advanced 2024React Advanced 2024
142 min
AI for React Developers
Top Content
Featured Workshop
Eve Porcello
Eve Porcello
Knowledge of AI tooling is critical for future-proofing the careers of React developers, and the Vercel suite of AI tools is an approachable on-ramp. In this course, we’ll take a closer look at the Vercel AI SDK and how this can help React developers build streaming interfaces with JavaScript and Next.js. We’ll also incorporate additional 3rd party APIs to build and deploy a music visualization app.
Topics:- Creating a React Project with Next.js- Choosing a LLM- Customizing Streaming Interfaces- Building Routes- Creating and Generating Components - Using Hooks (useChat, useCompletion, useActions, etc)
Building Full Stack Apps With Cursor
JSNation 2025JSNation 2025
46 min
Building Full Stack Apps With Cursor
Featured Workshop
Mike Mikula
Mike Mikula
In this workshop I’ll cover a repeatable process on how to spin up full stack apps in Cursor.  Expect to understand techniques such as using GPT to create product requirements, database schemas, roadmaps and using those in notes to generate checklists to guide app development.  We will dive further in on how to fix hallucinations/ errors that occur, useful prompts to make your app look and feel modern, approaches to get every layer wired up and more!  By the end expect to be able to run your own AI generated full stack app on your machine!
Please, find the FAQ here
Vibe coding with Cline
JSNation 2025JSNation 2025
64 min
Vibe coding with Cline
Featured Workshop
Nik Pash
Nik Pash
The way we write code is fundamentally changing. Instead of getting stuck in nested loops and implementation details, imagine focusing purely on architecture and creative problem-solving while your AI pair programmer handles the execution. In this hands-on workshop, I'll show you how to leverage Cline (an autonomous coding agent that recently hit 1M VS Code downloads) to dramatically accelerate your development workflow through a practice we call "vibe coding" - where humans focus on high-level thinking and AI handles the implementation.You'll discover:The fundamental principles of "vibe coding" and how it differs from traditional developmentHow to architect solutions at a high level and have AI implement them accuratelyLive demo: Building a production-grade caching system in Go that saved us $500/weekTechniques for using AI to understand complex codebases in minutes instead of hoursBest practices for prompting AI agents to get exactly the code you wantCommon pitfalls to avoid when working with AI coding assistantsStrategies for using AI to accelerate learning and reduce dependency on senior engineersHow to effectively combine human creativity with AI implementation capabilitiesWhether you're a junior developer looking to accelerate your learning or a senior engineer wanting to optimize your workflow, you'll leave this workshop with practical experience in AI-assisted development that you can immediately apply to your projects. Through live coding demos and hands-on exercises, you'll learn how to leverage Cline to write better code faster while focusing on what matters - solving real problems.
The React Developer's Guide to AI Engineering
React Summit US 2025React Summit US 2025
96 min
The React Developer's Guide to AI Engineering
Featured WorkshopFree
Niall Maher
Niall Maher
A comprehensive workshop designed specifically for React developers ready to become AI engineers. Learn how your existing React skills—component thinking, state management, effect handling, and performance optimization—directly translate to building sophisticated AI applications. We'll cover the full stack: AI API integration, streaming responses, error handling, state persistence with Supabase, and deployment with Vercel.Skills Translation:- Component lifecycle → AI conversation lifecycle- State management → AI context and memory management- Effect handling → AI response streaming and side effects- Performance optimization → AI caching and request optimization- Testing patterns → AI interaction testing strategiesWhat you'll build: A complete AI-powered project management tool showcasing enterprise-level AI integration patterns.
Build LLM agents in TypeScript with Mastra and Vercel AI SDK
React Advanced 2025React Advanced 2025
145 min
Build LLM agents in TypeScript with Mastra and Vercel AI SDK
Featured WorkshopFree
Eric Burel
Eric Burel
LLMs are not just fancy search engines: they lay the ground for building autonomous and intelligent pieces of software, aka agents.
Companies are investing massively in generative AI infrastructures. To get their money's worth, they need developers that can make the best out of an LLM, and that could be you.
Discover the TypeScript stack for LLM-based development in this 3 hours workshop. Connect to your favorite model with the Vercel AI SDK and turn lines of code into AI agents with Mastra.ai.