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

gasp-aicf-mcp

v1.0.0

Published

MCP server for GASP: AICF for SaaS — 168 canonical controls across 8 frameworks, queryable from Claude Code, Claude Desktop, or any MCP-compatible agent

Readme

gasp-aicf-mcp

Model Context Protocol server for GASP: AICF for SaaS — 168 canonical controls across SOC 2, ISO 27001, NIST 800-53, NIST AI RMF, EU AI Act, ISO 42001, CSA CCM, and GDPR. Includes a full question bank, evidence checklists, and cross-framework mapping matrix.

Wire it into Claude Code, Claude Desktop, or any MCP-compatible agent and query the entire control library in plain language — no browser required.

The database is bundled in the package. No setup beyond adding the config block.


Quick start — Claude Code

Add this block to ~/.claude/settings.json:

{
  "mcpServers": {
    "gasp-aicf": {
      "command": "npx",
      "args": ["-y", "gasp-aicf-mcp"]
    }
  }
}

Restart Claude Code (or run /mcp to reload), then ask:

"List the AI governance controls at Tier 2."


Quick start — Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "gasp-aicf": {
      "command": "npx",
      "args": ["-y", "gasp-aicf-mcp"]
    }
  }
}

Using a custom database

If you have a modified or newer version of gasp.db, point DB_PATH at it:

{
  "mcpServers": {
    "gasp-aicf": {
      "command": "npx",
      "args": ["-y", "gasp-aicf-mcp"],
      "env": {
        "DB_PATH": "/absolute/path/to/gasp.db"
      }
    }
  }
}

Tools

| Tool | Args | Description | |------|------|-------------| | classify_tool | category, data_types[], is_ai_tool | Maps category + data types → active domains + recommended risk tier | | list_controls | domain?, tier?, is_ai_specific?, search? | List controls with optional filters | | get_control | id | Full detail: description, questions, evidence, framework mappings | | get_questionnaire | domain_ids[], tier | All assessment questions for the given domains and tier | | get_evidence_checklist | domain_ids[], tier | All evidence requirements for the given domains and tier | | create_submission | tool_name, category, tier, responses[], evidence[] | Create an intake submission | | get_submission | id | Retrieve a submission with decision and conditions | | get_gap_report | submission_id | Gap analysis: blocker / conditional / flagged / clean | | list_submissions | status? | List submissions with optional status filter |

Resources

| URI | Description | |-----|-------------| | gasp://domains | All 11 control domains with IDs and descriptions | | gasp://frameworks | All 8 mapped frameworks with versions | | gasp://controls | Condensed control index (ID, name, domain, tier) | | gasp://mapping-matrix | Full mapping matrix: control → framework → strength |


Example prompts

Classify a new tool:

We're adopting Notion as a company knowledge base. It will store some PII (employee directories) and business-confidential documents. Classify it against AICF and tell me what controls apply.

Scope a vendor review:

We're evaluating an AI-powered analytics tool that processes financial data. What questionnaire questions and evidence would AICF require for a Tier 3 assessment?

Review a gap report:

Run a gap report for intake submission 3. Summarise the blockers and suggest which controls to prioritise first.

Map to a specific framework:

List all AICF controls that map to NIST AI RMF. For each one, tell me whether the mapping is full or partial and what the gap is.

Pairing with other MCP servers

The AICF server is standalone — no changes needed. Add other servers to your client config alongside it:

  • Jira / Linear MCP — attach intake decisions to tickets, trigger reviews from issue creation
  • GitHub MCP — run gap reports against PRs that introduce new dependencies or AI features
  • Slack MCP — notify reviewers when a submission is created or a decision is reached
  • Calendar MCP — schedule condition review deadlines using the due_date in decisions

Links


License

MIT