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

testastic-mcp

v0.1.8

Published

Model Context Protocol server for Testastic — manage test cases, runs, and reporting from Claude.

Downloads

474

Readme

Testastic MCP Server

A Model Context Protocol (MCP) server that exposes Testastic QA data and operations to AI assistants like Claude Desktop.

Building

cd mcp
npm install
npm run build

The compiled server is output to mcp/dist/index.js.

Claude Desktop Registration

Add the following to your Claude Desktop config file — no keys required:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "testastic": {
      "command": "node",
      "args": ["/absolute/path/to/blue-lilly/mcp/dist/index.js"]
    }
  }
}

Replace /absolute/path/to/blue-lilly with the actual path to this repository.

First-run authentication

On the first start, the server will automatically open https://blue-lilly.vercel.app/mcp/auth in your browser. Sign in with your @locastic.com Google account. The browser will redirect back to a local server on port 9876, store the session in ~/.testastic/auth.json (mode 600), and the MCP server will be ready.

Subsequent starts use the stored token and refresh it silently when needed. To re-authenticate, delete ~/.testastic/auth.json and restart Claude Desktop.


Replace `/absolute/path/to/blue-lilly` with the actual path to this repository.

After saving, restart Claude Desktop. The Testastic tools will be available in all conversations.

## Environment Variables

No environment variables are required in your Claude Desktop config. The MCP server
authenticates via the browser-based OAuth flow (stored in `~/.testastic/auth.json`) and
delegates privileged operations (such as user deletion) to the web app API.

## Available Tools

### Projects
- `list_projects` — all projects with member and case counts
- `get_project` — by id or name
- `create_project` — create a new project
- `update_project` — update name/description
- `archive_project` — soft-delete
- `restore_project` — un-archive
- `get_project_stats` — pass rate, fail count, open runs

### Test Suites
- `list_suites` — nested tree for a project
- `create_suite` — create suite (optionally nested)
- `rename_suite`
- `delete_suite`
- `move_suite`

### Test Cases
- `list_test_cases` — filter by suite, status, priority, search
- `get_test_case` — full case with steps
- `create_test_case` — with optional steps
- `update_test_case`
- `delete_test_case`
- `clone_test_case`
- `bulk_create_test_cases`
- `bulk_import_test_cases` — import from CSV

### Test Steps
- `list_steps`
- `create_step`
- `update_step`
- `delete_step`
- `reorder_steps`

### Test Runs
- `list_runs`
- `get_run`
- `create_run`
- `update_run`
- `delete_run`
- `complete_run`
- `rerun_failed`
- `get_run_summary`

### Run Cases
- `update_run_case`
- `assign_run_case`
- `bulk_update_run_cases`

### Attachments
- `list_attachments` — list attachments for a run case or test case
- `delete_attachment` — delete an attachment by ID

### Users
- `list_users`
- `get_user`
- `change_role`
- `remove_user`
- `list_invites`
- `create_invite`
- `cancel_invite`
- `resend_invite`

### Reporting
- `get_dashboard_stats`
- `get_pass_rate_trend`
- `get_failing_test_cases`
- `get_untested_cases`

### Stubs (not yet implemented)
- `add_label`, `remove_label`, `list_labels`
- `list_milestones`, `create_milestone`

## Development

Run in dev mode (no build step needed):

```bash
cd mcp
npm run dev