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

@askqa/mcp

v1.1.2

Published

MCP server for AskQA — monitor websites with automated tests by chatting with AI

Downloads

144

Readme

@askqa/mcp

MCP server for AskQA — monitor websites with automated tests by chatting with AI.

Setup

Add to your MCP client config (e.g. Claude Code, Claude Desktop, Cursor):

{
  "mcpServers": {
    "askqa": {
      "command": "npx",
      "args": ["-y", "@askqa/mcp"],
      "env": {
        "AUTOQA_API_URL": "https://api.askqa.ai",
        "AUTOQA_API_KEY": "aq_..."
      }
    }
  }
}

Get your API key from askqa.ai after signing in.

Environment Variables

| Variable | Required | Description | | ---------------- | -------- | ------------------------------------------ | | AUTOQA_API_KEY | Yes | Your AskQA API key | | AUTOQA_API_URL | No | API URL (default: http://localhost:8081) |

Tools

| Tool | Description | | ----------------------------- | ------------------------------------------------------- | | list_tests | List all saved tests | | get_test | Get full details of a test | | create_test | Create a test from a template or custom Playwright code | | update_test | Update an existing test | | delete_test | Delete a test (with confirmation) | | run_test | Run a test and wait for results | | get_test_results | Get recent test run results with step details | | get_test_screenshots | Get screenshots from a test run | | list_templates | List available test templates | | screenshot_url | Screenshot a URL and extract page structure | | validate_test | Dry-run custom test code before saving | | schedule_test | Create a recurring schedule for a test | | list_schedules | List all test schedules | | update_schedule | Pause or resume a schedule | | delete_schedule | Delete a schedule | | add_notification_channel | Add a Telegram notification channel | | list_notification_channels | List notification channels | | remove_notification_channel | Remove a notification channel | | test_notification_channel | Send a test notification |

Example Conversations

Check if something is working:

"Is checkout working on my site?"

The AI will call list_tests to find a matching test, then get_test_results to check the latest run.

Create a new monitor:

"Monitor https://example.com — check that the homepage loads and has a sign-in button"

The AI will use screenshot_url to inspect the page, write custom Playwright code, validate_test to verify it works, then create_test and schedule_test.

Debug a failing test:

"Why is my checkout test failing?"

The AI will call get_test_results and get_test_screenshots to analyze the failure.

Privacy Policy

This extension only makes HTTPS requests to the AskQA API. It does not access files on your computer or collect analytics.

For full details, see the Privacy Policy.

Support

License

MIT