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

@pactosigna/mcp-server

v0.1.124

Published

MCP server for PactoSigna QMS — connects Claude Desktop, Cursor, and other AI tools to your quality management system

Readme

@pactosigna/mcp-server

MCP (Model Context Protocol) server for PactoSigna — connects Claude Desktop, Cursor, and other AI tools to your quality management system.

Setup

Claude Desktop / Cursor

Add to your MCP client configuration:

{
  "mcpServers": {
    "pactosigna": {
      "command": "npx",
      "args": ["-y", "@pactosigna/mcp-server"],
      "env": {
        "PACTOSIGNA_API_KEY": "your-api-key-here"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | | --------------------- | -------- | ---------------------------------------------------- | | PACTOSIGNA_API_KEY | Yes | Your PactoSigna API key | | PACTOSIGNA_BASE_URL | No | API base URL (default: https://qms.pactosigna.com) |

Use Cases

Management Review Preparation

Ask your AI assistant to pull quality metrics and draft a management review:

"Get me the quality metrics for the last quarter and create a management review snapshot"

The MCP server returns KPIs for CAPAs, nonconformances, complaints, training compliance, releases, and audits — everything needed for ISO 13485 §5.6 management review inputs.

Quality Trend Analysis

Compare metrics across time periods to identify trends:

"Compare our quality metrics for the last 30 days vs the last year — are we improving?"

Audit Preparation

Pull current quality status before internal or external audits:

"What's our current CAPA closure rate and training compliance? I need to prepare for next week's audit."

Document Authoring

Ask your AI assistant about supported document types and generate compliant templates:

"What document types does PactoSigna support?"

"What fields does a user_need document need? What sections are required?"

"Create a new user need UN-042 about electronic signature workflows"

The MCP server has built-in knowledge of all 65+ document types, their frontmatter schemas, valid enum values, and required sections.

Available Tools

get_quality_metrics

Returns quality KPIs for a PactoSigna organization including CAPAs, nonconformances, complaints, training, releases, and audits.

Parameters:

  • organization_id (required): The PactoSigna organization ID
  • period (optional): Time period — 30d, 90d (default), or 365d

list_document_types

Lists all 65+ document types supported by PactoSigna with labels and scope (QMS or Device).

Parameters: None

get_document_schema

Returns the complete frontmatter schema for a document type including field types, valid enum values, required/optional status, and required H2 sections.

Parameters:

  • document_type (required): The document type key (e.g., user_need, requirement, software_risk)

generate_document_template

Generates a complete markdown document with correct frontmatter structure and required section headings.

Parameters:

  • document_type (required): The document type key
  • id (required): The document ID (e.g., UN-042)
  • title (required): The document title

Getting an API Key

  1. Log in to PactoSigna
  2. Go to Organization Settings > API Keys
  3. Create a new API key

License

MIT