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

@smarttest/mcp

v0.2.5

Published

Standalone MCP server for SmarTTest that forwards tool calls to the SmarTTest backend.

Readme


What It Is

SmarTT MCP is the official MCP server for SmarTTest.

It lets your MCP-compatible client connect to your SmarTTest workspace so you can browse projects, organize folders, manage tags, create and update test cases, and execute test runs from the same workflow where you are already working with AI.

This product is designed for teams that want faster access to their QA assets without leaving their MCP-enabled environment.

How To Configure It

To use SmarTT MCP, you need:

  • A SmarTTest account
  • A valid SmarTT MCP API key
  • An MCP-compatible client

Add SmarTT MCP to your client configuration and provide your API key through the SMARTT_MCP_API_KEY environment variable.

Generic MCP Client Example

{
  "servers": {
    "smarttTest": {
      "command": "npx",
      "args": ["-y", "@smarttest/mcp"],
      "env": {
        "SMARTT_MCP_API_KEY": "sttmcp_<tokenId>.<secret>"
      }
    }
  }
}

VS Code Example

Example .vscode/mcp.json:

{
  "servers": {
    "smarttTest": {
      "command": "npx",
      "args": ["-y", "@smarttest/mcp"],
      "env": {
        "SMARTT_MCP_API_KEY": "sttmcp_<tokenId>.<secret>"
      }
    }
  }
}

Exposed Tools

Projects

  • list_projects: Lists the projects available to your organization.

Tags

  • list_tags: Lists the tags available in a project.
  • create_tag: Creates a new tag in a writable project.

Folders

  • list_project_folders: Lists the active folders in a project, including folder paths.
  • create_folder: Creates a new folder or subfolder inside a writable project.

Test Cases

  • list_tests: Lists test cases in a project so you can find what you need quickly.
  • get_test: Returns the full detail of a specific test case.
  • create_test: Creates a new test case inside an existing folder.
  • update_test: Updates an existing test case.
  • archive_test: Archives a test case without losing its history.
  • restore_test: Restores an archived test case.

Test Runs

  • list_runs: Lists the runs available for a project with summary information.
  • get_run: Returns the full detail of a specific run.
  • create_run: Creates a new run for a project.
  • update_run_test_result: Updates the result of a test inside a run.
  • complete_run: Completes a run once execution is finished.

Typical Use Cases

  • Explore QA assets from your MCP client without switching tools
  • Create and maintain structured test cases with AI assistance
  • Organize folders and tags across active projects
  • Launch runs and update execution results from the same workflow
  • Keep testing activity aligned with the rest of your AI-assisted delivery process