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

imperial-mcp-qase

v1.0.1

Published

MCP server for Qase.io test management - Built by Imperial Healthtech

Readme

Imperial MCP Qase

MCP (Model Context Protocol) server for Qase.io test management platform. Built by Imperial Healthtech for fast, seamless integration between Claude Code / Cursor and Qase API.

Quick Start (Tim Imperial)

1. Claude Code

Tambahkan ke ~/.claude/claude_code_config.json:

{
  "mcpServers": {
    "qase": {
      "command": "npx",
      "args": ["-y", "imperial-mcp-qase"],
      "env": {
        "QASE_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

2. Cursor

Tambahkan ke ~/.cursor/mcp.json:

{
  "mcpServers": {
    "qase": {
      "command": "npx",
      "args": ["-y", "imperial-mcp-qase"],
      "env": {
        "QASE_API_TOKEN": "YOUR_API_TOKEN"
      }
    }
  }
}

3. Restart

Restart Claude Code atau Cursor setelah menambahkan config.


Features

  • Projects: List all Qase projects
  • Test Cases: List, get, create, update, and delete test cases
  • Defects: Manage defects including create, update, resolve, and delete
  • Test Runs: Create and manage test runs
  • Test Results: Add and track test results

Available Tools

Projects

| Tool | Description | |------|-------------| | qase_list_projects | List all Qase projects |

Test Cases

| Tool | Description | |------|-------------| | qase_list_cases | List test cases in a project with optional filtering | | qase_get_case | Get a single test case by ID | | qase_create_case | Create a new test case | | qase_update_case | Update an existing test case | | qase_delete_case | Delete a test case |

Defects

| Tool | Description | |------|-------------| | qase_list_defects | List defects in a project | | qase_get_defect | Get a single defect by ID | | qase_create_defect | Create a new defect | | qase_update_defect | Update an existing defect | | qase_resolve_defect | Mark a defect as resolved | | qase_delete_defect | Delete a defect |

Test Runs

| Tool | Description | |------|-------------| | qase_list_runs | List test runs in a project | | qase_get_run | Get a single test run by ID | | qase_create_run | Create a new test run | | qase_complete_run | Complete/finish a test run | | qase_delete_run | Delete a test run |

Test Results

| Tool | Description | |------|-------------| | qase_list_results | List test results for a test run | | qase_get_result | Get a single test result by hash | | qase_add_result | Add a test result to a test run | | qase_add_results_bulk | Add multiple test results at once | | qase_delete_result | Delete a test result |

Usage Examples

List All Projects

Show me all Qase projects

List Test Cases

List all test cases in project BPJSCAN

Create a Test Case

Create a new test case in BPJSCAN project titled "Login Flow" with steps:
1. Navigate to login page
2. Enter credentials
3. Click login button

Add Test Result

Add a passed result for case 123 in run 456 for project BPJSCAN

Create a Defect

Create a defect in BPJSCAN project: "Login button not working" with severity blocker

API Reference

Severity Levels

| Value | Level | |-------|-------| | 0 | Not set | | 1 | Blocker | | 2 | Critical | | 3 | Major | | 4 | Normal | | 5 | Minor | | 6 | Trivial |

Priority Levels

| Value | Level | |-------|-------| | 0 | Not set | | 1 | High | | 2 | Medium | | 3 | Low |

Result Status

  • passed
  • failed
  • blocked
  • skipped
  • invalid

Defect Status

  • open
  • resolved
  • in_progress
  • invalid

Development

# Install dependencies
npm install

# Build
npm run build

# Development (watch mode)
npm run dev

# Type check
npm run typecheck

License

MIT

Author

Imperial Healthtech