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

@siddharth.sharma/testrail-mcp

v1.0.5

Published

TestRail MCP integration package

Readme

@siddharth.sharma/testrail-mcp

TestRail MCP server for test case and folder management. This package runs as a stdio MCP server.

Cursor mcp.json setup

{
  "mcpServers": {
    "testrail-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@siddharth.sharma/testrail-mcp",
        "stdio"
      ],
      "env": {
        "TEST_RAIL_SECRET_JSON_FILE": "/Users/<you>/.mcp-secrets/testrail-secret.json"
      }
    }
  }
}

Secrets and environment

Preferred option:

  • TEST_RAIL_SECRET_JSON_FILE (recommended)
  • TEST_RAIL_SECRET_JSON (inline JSON)

Secret JSON shape:

{
  "url": "https://company.testrail.io",
  "username": "[email protected]",
  "password": "replace-me",
  "projectId": 1
}

Supported aliases:

  • username can also be user or email
  • password can also be apiKey or token

Optional defaults:

  • TEST_RAIL_PROJECT_ID
  • TEST_RAIL_PROJECT_NAME (used when project id is not set)
  • TEST_RAIL_TIMEOUT_MS (default 15000)

Available tools

Utility:

  • help: quick usage and safety guide.
  • echo: connectivity check.

TestRail operations (one tool per action):

  • Projects: testrail_list_projects, testrail_get_project
  • Suites: testrail_list_suites, testrail_get_suite
  • Sections/Folders: testrail_list_sections, testrail_list_folders, testrail_get_section, testrail_create_section, testrail_update_section
  • Cases: testrail_get_case, testrail_list_cases, testrail_create_case, testrail_update_case, testrail_bulk_update_cases, testrail_move_cases_to_section, testrail_delete_case, testrail_get_case_fields

Default project behavior

If TEST_RAIL_PROJECT_ID or TEST_RAIL_PROJECT_NAME is configured, these tools can omit project_id:

  • testrail_list_cases, testrail_list_sections, testrail_list_folders
  • testrail_create_section, testrail_get_project, testrail_list_suites

If no default project is configured, provide project_id in those tools.