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

@qa-ai-stlc/mcp-server

v0.6.0

Published

Local stdio MCP server over the core engine API: a tool registry with Zod input/output schemas and coded errors. Calls no model itself.

Readme

@qa-ai-stlc/mcp-server

A local stdio MCP server over @qa-ai-stlc/core: a tool registry with Zod input/output schemas (AGENTS.md 12.3). A ToolDefinition's handler returns a value matching its outputSchema or throws — a QaError for an expected failure, anything else for a bug — and registerTool turns that into a structured CallToolResult carrying a stable code and, when there is one, a remediation, never a raw stack trace. The server calls no model itself; it is driven by the agent host's own model over the MCP protocol.

qa-mcp-server starts the stdio server with the built-in tools: qa.ping (a health check that does not touch .qa/) and one tool per engine operation — qa.doctor, qa.explore, qa.scope, qa.cases_add, qa.cases_render, qa.approve, qa.validate — each calling the exact same packages/core or packages/explorer function its CLI counterpart calls (P2-05). qa.explore does not support manual pick-mode capture: opening a headed browser for a human to click through is a CLI-only feature, not something an agent can drive over stdio. report has no CLI command yet, so it has no MCP tool yet either.

It also starts the six browser.* tools — qa.browser_open, qa.browser_navigate, qa.browser_click, qa.browser_fill, qa.browser_snapshot, qa.browser_close — the only way an agent may touch the application under test (ADR-005). Every one of them registers what it did as hashed evidence under the session's run before it returns, so an exploratory session leaves a complete trail and an unregistered screenshot is not a representable outcome. A session runs in safe mode with no opt-out: non-GET requests are aborted, and navigation is limited to the environment's domain allowlist. Unlike every other tool, these share one session store owned by the server process, because a session spans several tool calls; it is closed on SIGINT/SIGTERM, and an idle session is closed at the next call that touches it.

Part of QA-AI-STLC. See the repository root for license, contributing and security information.