npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@glutamateapp/ui-assist

v1.0.8

Published

UI Assist MCP server is a server that connect with UI Assist chrome extension to help with UI based input in web development.

Readme

UI Assist MCP Server

A Model Context Protocol (MCP) server that connects with the UI Assist Chrome extension to help with UI-based input in web development. This server implements the SSE (Server-Sent Events) transport type for MCP communication.

Description

This MCP server provides tools to interact with a browser, allowing AI assistants to:

  • Capture screenshots of current browser tabs
  • Get and manipulate selected HTML elements
  • Clear selections and perform other browser interactions
  • Make targeted changes to specific UI elements through natural language instructions

Interactive Element Selection and Manipulation

UI Assist enables precise control over web elements through an intuitive selection interface:

UI Assist Selection Interface

With UI Assist, you can:

  1. Select specific elements on any webpage using the point-and-click interface
  2. Give natural language instructions directly in the UI to modify only the selected elements
  3. Make targeted changes to styling, content, or structure of selected components
  4. Preview changes before they are applied
  5. Apply modifications while maintaining the rest of the page intact

For example, you could:

  • Select a specific card component and type "make this card's background lighter" directly in the UI
  • Highlight multiple buttons and enter "change these buttons to a purple gradient theme" in the instruction field
  • Select a navigation menu and input "add a drop shadow to this nav bar" in the UI

Financial Dashboard Example Research Platform Example

Instructions Feature

UI Assist provides a powerful instructions interface that allows you to modify selected elements through natural language commands:

Instructions Interface

The instructions feature allows you to:

Direct Element Targeting: Instructions are applied specifically to the selected elements, ensuring precise modifications

Example instructions you can use:

  • "Change this icon to a home icon"
  • "Make this button larger and round"
  • "Update the text color to dark blue"
  • "Add a subtle hover effect"

Wireframing and AI Generation

UI Assist includes powerful wireframing tools that enable rapid prototyping and AI-powered generation:

Wireframe Tools

  • Draw Tool: Freehand drawing for quick sketches and annotations
  • Rectangle Tool: Create boxes and containers for layout planning
  • Circle Tool: Add circular elements and icons
  • Text Tool: Add text placeholders and labels

Screenshot and Generation Workflow

  1. Use the wireframing tools to sketch your desired layout
  2. Add annotations and placeholder text to guide the AI
  3. Take a screenshot of your wireframe using the "Take Screenshot" button
  4. Ask Cursor AI to generate the actual implementation based on your wireframe

Example instructions you can give to Cursor after creating a wireframe:

  • "Generate a React component matching this wireframe layout"
  • "Create a responsive design based on this sketch"
  • "Implement this card component with Tailwind CSS"
  • "Generate a modern UI design following this structure"

The combination of visual wireframing and AI generation allows for:

  • Rapid prototyping of UI concepts
  • Clear communication of design intentions
  • Immediate implementation of wireframe designs
  • Iterative refinement through visual feedback

Chrome Extension

To enable browser interaction capabilities, you need to install the UI Assist Chrome extension:

UI Assist Extension

Features

  • 🔍 Element selection in browser tabs
  • 📸 Screenshot capture support
  • 🔄 Real-time synchronization with MCP server
  • 🛡️ Secure local communication

Installation Steps

  1. Click the extension link above to open the Chrome Web Store
  2. Click "Add to Chrome" to install the extension
  3. Once installed, you'll see the UI Assist icon in your browser toolbar
  4. Make sure the MCP server is running locally before using the extension you shoud be able to see connected

Once we reach 100 stars , we will open source the code extension code as well

Installation

Option 1: One-Click Installation via Glutamate App (Recommended)

The easiest way to install and set up UI Assist is through the Glutamate app:

  1. Download and install Glutamate
  2. Open Glutamate and navigate to the Extensions section
  3. Find UI Assist and click "Install"
  4. The app will automatically configure everything for you and runs locally

Option 2: Manual Setup

If you prefer to set up UI Assist manually, you have two options:

Global Installation

npm install -g @glutamateapp/ui-assist

Once installed globally, you can run the server directly:

ui-assist

Using npx

You can run the server without installation using npx:

npx @glutamateapp/ui-assist

Configuration

The server can be configured using:

  • PORT: Port for the MCP server (default: 7964)
  • CONNECTOR_PORT: Port for the browser connector (default: 9025)

Examples:

# Using environment variables
PORT=3333 CONNECTOR_PORT=3026 ui-assist

# Using command line arguments
ui-assist --port=3333 --connector-port=3026

Available Tools

get_selected_elements

Retrieves HTML elements that have been selected in the browser, including any instructions provided directly in the UI.

Example usage in Cursor AI:

I've selected some elements in my browser and added instructions. Can you retrieve them and tell me about their structure and instructions?

clear_selected_elements

Clears the list of selected elements.

Example usage in Cursor AI:

Please clear any selected elements from previous operations.

Roadmap

Upcoming Features

  • Element Movement: Soon you'll be able to:
    • Drag and drop selected elements to new positions

Complete Example Workflow

Here's a complete workflow example:

  1. Start the MCP server
  2. Open Cursor and ensure it's configured to use the MCP server
  3. In a browser, navigate to a webpage
  4. In Cursor, ask the AI: "Take a screenshot of my current browser page."
  5. Select some HTML elements in the browser and enter instructions directly in the UI
  6. In Cursor, ask the AI: "Retrieve the selected elements and explain their structure and follow instructions."
  7. Once finished, ask the AI: "Clear the selected elements."

Integration with AI Assistants

Cursor Setup

To use this MCP server with Cursor:

  1. Ensure the server is running:

    # If installed globally
    ui-assist
    
    # Or using npx
    npx @glutamateapp/ui-assist
  2. Add the following configuration to Cursor's MCP section:

    {
      "mcpServers": {
        "browser-tools": {
          "url": "http://localhost:3332/sse"
        }
      }
    }
  3. Create or update your mcp.json file in your project root with the same configuration.

  4. Adjust the port number if you've configured a different port.

  5. Restart Cursor if necessary for the changes to take effect.

Claude Desktop Setup

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "uiassist": {
      "url": "http://localhost:3332/sse"
    }
  }
}

Development

Building from source

npm run build

Watching for changes during development

npm run watch

Repository

https://github.com/ShadowCloneLabs/GlutamateMCPServers

License

MIT