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

zephyr-squad-cloud-mcp

v1.0.6

Published

MCP server for Zephyr Squad Cloud API with JWT authentication

Readme

Zephyr Squad Cloud MCP Server

A local MCP (Model Context Protocol) server that connects Claude to the Zephyr Squad Cloud API using per-request JWT authentication.

How JWT auth works

Each API call requires a freshly signed JWT token built from:

  • Access Keyiss claim + zapiAccessKey header
  • Secret Key → HMAC-SHA256 signing key
  • Account IDsub claim
  • HTTP Method + Path + Query Params → SHA-256 hash → qsh (Query String Hash) claim

This prevents replay attacks — every token is tied to the exact request it was made for.


Setup

1. Get your Zephyr API credentials

  1. Open any Jira project → navigate to the Zephyr section → click API keys
  2. Click Generate and copy both the Access Key and Secret Key
  3. Get your Account ID: go to your Jira profile; it's the last segment of the URL

2. Configure Claude Desktop

No installation needed. Just add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "zephyr": {
      "command": "npx",
      "args": ["-y", "zephyr-squad-cloud-mcp@latest"],
      "env": {
        "ZEPHYR_BASE_URL": "https://prod-api.zephyr4jiracloud.com/connect",
        "ZEPHYR_ACCESS_KEY": "<your-access-key>",
        "ZEPHYR_SECRET_KEY": "<your-secret-key>",
        "ZEPHYR_ACCOUNT_ID": "<your-account-id>"
      }
    }
  }
}

npx will automatically download and run the latest version — no manual installs or updates required. Every time Claude Desktop restarts, it picks up the latest published version.

The config file is located at:

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

Available tools

| Tool | Description | |------|-------------| | zephyr_get_test_cycles | List test cycles for a project/version | | zephyr_create_test_cycle | Create a new test cycle | | zephyr_update_test_cycle | Update an existing test cycle | | zephyr_delete_test_cycle | Delete a test cycle | | zephyr_get_executions | Get executions in a cycle | | zephyr_create_execution | Add a test case to a cycle | | zephyr_get_execution | Get a single execution by ID | | zephyr_update_execution_status | Update execution status (Pass/Fail/WIP/Blocked) | | zephyr_bulk_update_execution_status | Update multiple executions at once | | zephyr_get_test_steps | Get test steps for a test case | | zephyr_add_test_step | Add a step to a test case | | zephyr_update_test_step | Update an existing step | | zephyr_delete_test_step | Delete a step | | zephyr_get_step_results | Get step-level results for an execution | | zephyr_update_step_result | Update a step result status | | zephyr_get_folders | List folders in a cycle | | zephyr_create_folder | Create a folder within a cycle |

Execution status IDs

| ID | Status | |----|--------| | -1 | Unexecuted | | 1 | Pass | | 2 | Fail | | 3 | WIP (In Progress) | | 4 | Blocked |


Example prompts

Get all test cycles for project 10001, version -1
Create a test cycle called "Sprint 42 Regression" in project 10001
Mark execution abc123 as Pass in cycle xyz, project 10001, version -1, issue 20005
Get all test steps for issue 20005 in project 10001

Requirements

  • Node.js >= 18
  • Zephyr Squad Cloud license on your Jira instance