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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@loadmill/mcp

v0.2.3

Published

Loadmill mcp library

Readme

Loadmill MCP Server

The Loadmill MCP server exposes Loadmill’s test-management APIs to any Model Context Protocol (MCP) client. Use it to search, run, write and validate Loadmill tests without leaving your MCP-enabled IDE or agent workflow.

Use Cases

  • Query Loadmill for information
  • Execute Loadmill tests
  • Write and maintain Loadmill tests

Note: When working with MCPs, make sure your client runs in Agent mode.

IDE Integration

VS Code

Important: You will have to generate a Loadmill API token from your Loadmill account settings to authenticate the MCP server.

{
  "servers": {
    "loadmill": {
      "type": "stdio",
      "command": "npx",
      "args": ["@loadmill/mcp"],
      "env": {
        "LOADMILL_API_TOKEN": "${input:loadmill-api-token}"
      }
    }
  },
  "inputs": [
    {
      "id": "loadmill-api-token",
      "type": "promptString",
      "description": "Loadmill API token",
      "password": true
    }
  ]
}

Cursor

{
  "mcpServers": {
    "loadmill": {
      "command": "npx",
      "args": ["@loadmill/mcp"],
      "env": {
        "LOADMILL_API_TOKEN": "${env:LOADMILL_API_TOKEN}"
      }
    }
  }
}

MCP Capabilities

Tools – Supports list_tools and call_tool; each tool returns standard MCP text content:

  • search_test_suites – Filter Loadmill test suites by text, dates, or labels.
  • search_test_suite_runs – Search historical test-suite flow runs.
  • run_test_suite – Trigger a test-suite execution by ID.
  • get_test_suite_run – Retrieve run details (including flow run IDs).
  • get_test_suite_flow_run – Inspect an individual flow run by ID.
  • search_test_plans – Browse Loadmill test plans.
  • run_test_plans – Start a plan with optional labels and parameter overrides.
  • get_test_plan_run – Fetch plan-run status and metadata.
  • get_labels – List team labels (id and description).
  • validate_test_suite – Validate a local Loadmill test-suite JSON file against the official schema.
  • create_new_test_suite – Create a new, empty Loadmill test suite and return its ID.

Prompts – Supports list_prompts and get_prompt:

  • investigate_failed_test – Summarise a failed run and advise next steps.

Resources – Supports list_resources and read_resource:

  • loadmill://schemas/test-suite@v1 – JSON Schema (draft 2020-12) for Loadmill test suites. Responses are cached locally for an hour.

Working with the Test-Suite Schema

  • Use validate_test_suite to catch schema violations in local JSON files before uploading them to Loadmill.

Once connected, your MCP client can mix these tools, prompts, and resources to automate Loadmill QA workflows end-to-end.