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

@access-mcp/software-discovery

v0.8.0

Published

ACCESS-CI Software Discovery Service MCP server

Readme

Software Discovery MCP Server

MCP server for discovering software packages across ACCESS-CI compute resources. Features global software search, AI-enhanced metadata, fuzzy matching, and software comparison using the Software Discovery Service (SDS) API v1.

Usage Examples

Search & Browse

"TensorFlow availability across ACCESS-CI"
"All software on Expanse"
"Python versions on Delta"
"GROMACS installation on Bridges-2"

AI-Enhanced Discovery

"Machine learning software on Delta"
"Quantum chemistry tools (all resources)"
"Computational biology packages"
"GPU-optimized software by category"

Comparison Queries

"Compare CUDA and OpenMPI availability"
"Which resources have TensorFlow and PyTorch?"

Tools

search_software

Search software packages on ACCESS-CI resources with fuzzy matching support.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | query | string | Software name to search for (supports fuzzy matching) | | resource | string | Resource provider name or ID (e.g., "anvil", "delta.ncsa.access-ci.org") | | fuzzy | boolean | Enable fuzzy matching (default: true) | | include_ai_metadata | boolean | Include AI-generated metadata (default: true) | | limit | number | Max results (default: 100) |

Examples:

// Search for Python packages with fuzzy matching
search_software({ query: "python", limit: 20 })

// Find TensorFlow on Anvil
search_software({ query: "tensorflow", resource: "anvil" })

// Exact search (no fuzzy matching)
search_software({ query: "gcc", fuzzy: false })

list_all_software

List all software packages available across ACCESS-CI resources.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | resource | string | Filter to a specific resource provider | | include_ai_metadata | boolean | Include AI-generated metadata (default: false) | | limit | number | Max results (default: 100) |

Examples:

// List all available software
list_all_software({ limit: 100 })

// List software on Delta
list_all_software({ resource: "delta", limit: 50 })

get_software_details

Get detailed information about a specific software package.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | software_name | string | Exact or partial software name (required) | | resource | string | Filter to a specific resource provider | | fuzzy | boolean | Enable fuzzy matching (default: true) |

Examples:

// Get TensorFlow details
get_software_details({ software_name: "tensorflow" })

// Get GCC details on Expanse
get_software_details({ software_name: "gcc", resource: "expanse" })

compare_software_availability

Compare software availability across multiple resources.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | software_names | array | List of software names to check (required) | | resources | array | List of resources to compare (compares all if not specified) |

Examples:

// Compare CUDA and OpenMPI availability
compare_software_availability({ software_names: ["cuda", "openmpi"] })

// Compare on specific resources
compare_software_availability({
  software_names: ["tensorflow", "pytorch"],
  resources: ["anvil", "delta", "expanse"]
})

Installation

npm install -g @access-mcp/software-discovery

Configuration

{
  "mcpServers": {
    "access-software-discovery": {
      "command": "npx",
      "args": ["@access-mcp/software-discovery"],
      "env": {
        "SDS_API_KEY": "your-api-key-here"
      }
    }
  }
}

Note: The SDS_API_KEY environment variable is required. Contact the ACCESS-CI team to request an API key.

Resources

  • accessci://software-discovery - ACCESS-CI Software Discovery Service
  • accessci://software/categories - Available filter values from actual software data