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

nia-webeval-mcp

v0.1.3

Published

MCP server for Nia AI WebEvalAgent - Web automation and evaluation agent

Readme

Nia Web Evaluation Agent

A powerful AI-powered browser testing tool for automatically testing web applications. This agent uses browser automation to analyze UI/UX, inspect network traffic via Chrome DevTools, and provide detailed reports.

Features

  • UI/UX Testing: Analyzes user interfaces and experiences
  • Chrome DevTools Integration: Inspects network traffic and API calls
  • Error Detection: Identifies JavaScript errors, API issues, and visual problems
  • Comprehensive Reporting: Provides detailed reports with screenshots and recommendations

Integration with Nia

The Web Evaluation Agent is integrated with Nia's API key system, allowing seamless authentication and usage tracking for your account.

Usage

API Endpoints

The agent can be accessed through the following REST API endpoints:

  • POST /api/web-eval: Start a new web evaluation session
  • DELETE /api/web-eval/{process_id}: Stop an active evaluation session
  • GET /api/web-eval/status/{process_id}: Check the status of a session

Starting a Web Evaluation Session

import requests

# Start a web evaluation session
response = requests.post(
    "https://api.nia.dev/api/web-eval",
    json={
        "api_key": "your_nia_api_key",
        "run_background": True  # Run in background
    }
)
process_id = response.json()["process_id"]

MCP Server Usage

The Web Evaluation Agent runs as an MCP server and provides two main tools:

  1. web_eval_agent: Evaluates the UX/UI of a web application
  2. browser_login_setup: Sets up browser state for authenticated testing

Example tool usage:

# Web Evaluation
result = web_eval_agent(
    url="http://localhost:3000",
    task="Test the login flow and verify that error messages are displayed correctly",
    headless_browser=False
)

# Setup Browser State
result = browser_login_setup(
    url="http://localhost:3000/login"
)

Environment Variables

  • NIA_API_KEY: Your Nia API key for authentication
  • USE_LOCAL_BACKEND: Set to "true" to use a local backend (default: false)
  • NIA_BACKEND_URL: URL of the Nia backend (default: https://api.nia.dev)

Requirements

  • Python 3.10+
  • Chrome or Chromium browser
  • mcp-python
  • browser-use library