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

@acrity/mcp-server

v0.1.2

Published

MCP server for Acrity public API workflows.

Readme

What It Does

This package runs a local MCP stdio server that lets MCP-compatible agents read Acrity workspace data through the Acrity public API.

The server uses an existing Acrity public API key. It does not accept or create provider secrets.

Tools

| Tool | Public API route | Required scope | | --- | --- | --- | | get_acr_context | GET /api/v1/context | Valid API key | | list_repositories | GET /api/v1/repositories | Repositories.Read | | get_repository | GET /api/v1/repositories/{id} | Repositories.Read | | list_pull_requests | GET /api/v1/pull-requests | Reviews.Read | | get_pull_request | GET /api/v1/pull-requests/detail | Reviews.Read | | list_reviews | GET /api/v1/reviews | Reviews.Read | | get_review_findings | GET /api/v1/reviews/{runId} | Reviews.Read | | check_bootstrap_eligibility | GET /api/v1/repositories/{id}/bootstrap/eligibility | Repositories.Read | | get_bootstrap_status | GET /api/v1/repositories/{id}/bootstrap | Repositories.Read | | get_bootstrap_artifact | GET /api/v1/repositories/{id}/bootstrap/artifact | Repositories.Read | | list_security_scans | GET /api/v1/security-scans | SecurityScans.Read | | get_security_scan | GET /api/v1/security-scans/{runId} | SecurityScans.Read | | start_security_scan | POST /api/v1/security-scans | SecurityScans.Write |

Configuration

ACRITY_API_KEY is required.

ACRITY_API_BASE_URL is optional and defaults to https://acrity.io.

export ACRITY_API_KEY="sk_prod_..."
export ACRITY_API_BASE_URL="https://acrity.io"
export ACRITY_MCP_TIMEOUT_MS="20000"

Recommended read-only scopes:

Repositories.Read
Reviews.Read
SecurityScans.Read

Add SecurityScans.Write only when the agent should queue manual dependency security scans with start_security_scan.

Run With npx

ACRITY_API_KEY="sk_prod_..." npx -y @acrity/mcp-server

MCP Client Configuration

{
  "mcpServers": {
    "acrity": {
      "command": "npx",
      "args": ["-y", "@acrity/mcp-server"],
      "env": {
        "ACRITY_API_KEY": "sk_prod_..."
      }
    }
  }
}

To point the server at another Acrity environment, add ACRITY_API_BASE_URL. Do not include /api; the MCP server appends /api/v1/* paths itself.

Recommended First Call

Call get_acr_context first. It verifies that the API key is active and reports available scopes before the agent attempts deeper tools.