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

@aqua-cloud/mcp-server

v2.9.0

Published

MCP server for Aqua Cloud - bridges Claude with Aqua's REST API

Readme

Aqua MCP Server

A Model Context Protocol server for Aqua Cloud — connect Claude and other MCP-capable AI assistants to your Aqua test management platform.

Manage requirements, defects, test cases, and test scenarios in natural language: create items, update statuses, add test steps, link relationships, search projects, and more — 26 tools in total.

Quick Start

Claude Code

claude mcp add aqua \
  --env AQUA_URL=https://your-instance.aqua-cloud.io/aquaWebNG \
  --env AQUA_USER=your-username \
  --env AQUA_PASS=your-password \
  --env AQUA_PROJECT_ID=123 \
  -- npx -y @aqua-cloud/mcp-server

Claude Desktop

Add to your claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "aqua": {
      "command": "npx",
      "args": ["-y", "@aqua-cloud/mcp-server"],
      "env": {
        "AQUA_URL": "https://your-instance.aqua-cloud.io/aquaWebNG",
        "AQUA_USER": "your-username",
        "AQUA_PASS": "your-password",
        "AQUA_PROJECT_ID": "123"
      }
    }
  }
}

Claude Desktop users can alternatively install the one-click extension: download aqua.mcpb, then double-click it (or drag it into Claude Desktop → Settings → Extensions).

Configuration

| Variable | Required | Description | | --- | --- | --- | | AQUA_URL | yes | Your Aqua instance base URL, e.g. https://app.aqua-cloud.io/aquaWebNG | | AQUA_USER | yes | Aqua username | | AQUA_PASS | yes | Aqua password | | AQUA_PROJECT_ID | no | Default project for project-scoped tools |

What can it do?

  • Items — create, read, update requirements, defects, test cases, and test scenarios; statuses, fields, assignments, comments
  • Test management — read and add test steps, link items (e.g. test case ⇄ requirement), inspect item history
  • Search — filtered project listings and global search across all projects
  • Attachments — list, upload, download, delete
  • Embedded images — images in rich-text descriptions are surfaced per item and can be downloaded locally for the assistant to view (downloadImages parameter)
  • Projects — list projects and users, switch the active project
  • Built-in guide — an aqua-guide MCP prompt that teaches the assistant how to use the tools effectively

Ask your assistant things like:

"Create a defect in project 123: login button unresponsive on Safari, high priority."

"List all open requirements assigned to me and add a test case for each."

Requirements

  • Node.js ≥ 20.6.0
  • An Aqua Cloud account with API access

Prefer a CLI?

The same functionality is available as a command-line tool — @aqua-cloud/cli — for AI agents that work better with shell commands than MCP.

License

Proprietary software © aqua cloud GmbH. See the LICENSE file for terms. Use requires a valid Aqua Cloud subscription.

Support