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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@uuv/mcp-server

v0.4.1

Published

A Model Context Protocol (MCP) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.

Readme

UUV MCP Server

This library is an MCP (Model Context Protocol) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.

Requirements

Getting started

First, install the UUV MCP server with your client.

Standard config works in most of the tools:

{
  "mcpServers": {
    "uuv": {
      "command": "npx",
      "args": [
        "@uuv/mcp-server@latest"
      ]
    }
  }
}

Follow the MCP Servers documentation. For example in ~/.config/opencode/opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "uuv": {
      "type": "local",
      "command": [
        "npx",
        "@uuv/mcp-server@latest"
      ],
      "enabled": true
    }
  }
}

Use the Claude Code CLI to add the Marketplace plugin for the UUV:

claude plugin marketplace add https://github.com/e2e-test-quest/uuv

Then use the Claude Code CLI to add specific UUV's plugin:

claude plugin install uuv-e2e-accessibility-test@uuv-e2e-accessibility-test-marketplace

Then use the Claude Code CLI to add the UUV MCP server:

claude mcp add uuv npx @uuv/mcp-server@latest

To add the UUV Extension:

gemini extensions install https://github.com/e2e-test-quest/uuv --auto-update

To remove the UUV Extension:

gemini extensions uninstall uuv-e2e-accessibility-test

Exposed MCP Tools

This MCP server exposes the following tools:

retrieve_prompt

  • Description: Retrieve an uuv prompt template for a coding agent based on a prompt name and arguments.
  • Input Schema:
    • promptName (enum): Either generate_test_expect_table, generate_test_expect_element, generate_test_click_element, generate_test_within_element or generate_test_type_element
    • baseUrl (string): The base URL of the page
    • For generate_test_expect_table, generate_test_expect_element, generate_test_click_element, generate_test_within_element or generate_test_type_element:
      • accessibleName: (string, optional): Accessible name
      • accessibleRole: (string, optional): Accessible role
      • domSelector: Dom selector of the element

available_sentences

  • Description: List all available UUV test sentences/phrases in Gherkin format.
  • Input Schema:
    • category (enum, optional): Filters sentences by action type (general, keyboard, click, contains, type, checkable)
    • role (string, optional): Filters sentences related to an accessible role

generate_test_expect_element

  • Description: Generate a complete UUV test scenario (Gherkin format) to verify the presence of an element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_expect_element

  • Description: Generate a complete UUV test scenario (Gherkin format) to verify the presence of an element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_click_element

  • Description: Generate a complete UUV test scenario (Gherkin format) that clicks on html element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_type_element

  • Description: Generate a complete UUV test scenario (Gherkin format) that focus within a html element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_expect_table

  • Description: Generate a complete UUV test scenario (Gherkin format) to verify the presence and content of html table, grid or treegrid.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the table/grid/treegrid is located
    • innerHtmlFilePath (string): File path containing the raw innerHTML content

Exposed MCP Prompts

This MCP server exposes the following prompts:

generate_test_expect_element

  • Description: Returns UUV prompt to verify the presence of an element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_expect_element

  • Description: Returns UUV prompt to verify the presence of an element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_click_element

  • Description: Returns UUV prompt that clicks on html element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_type_element

  • Description: Returns UUV prompt that focus within a html element with specified (role and name) or domSelector.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the element is located
    • accessibleName (string): Accessible name of the element
    • accessibleRole (string): Accessible role of the element
    • domSelector: Dom selector of the element

generate_test_expect_table

  • Description: Generate a complete UUV test scenario (Gherkin format) to verify the presence and content of html table, grid or treegrid.
  • Input Schema:
    • baseUrl (string): The base URL of the page where the table/grid/treegrid is located
    • innerHtmlFilePath (string): File path containing the raw innerHTML content