Skip to content

Browsing the Registry

The fastest way to find MCP bundles and skills is the web registry at mpak.dev.

Search by name, description, or keyword:

  • Visit mpak.dev and use the search bar
  • Or from the CLI: mpak bundle search <query>

Both query the same registry API, so results are identical.

Each package on mpak.dev has a detail page showing everything you need to evaluate it:

FieldWhat It Tells You
NameScoped package name (@org/server)
VersionLatest published version
DescriptionWhat the server does
DownloadsTotal download count (a rough trust signal)
CertificationSecurity level (L1-L4) from the mpak Trust Framework
ProvenanceSource repository, workflow, and commit hash
PlatformsAvailable platforms (e.g., darwin-arm64, linux-x64)
Install commandCopy-pasteable mpak bundle run command
READMEFull README rendered from the source repository

Before running a bundle, look for these trust signals:

The mpak Trust Framework assigns certification levels based on automated security scanning:

LevelMeaning
L1 (Basic)Meets minimum requirements (valid manifest, no embedded secrets)
L2 (Standard)Pinned deps, vulnerability scanning, author identity
L3 (Verified)Signed bundles, build provenance, SLSA
L4 (Attested)Behavioral sandbox, reproducible builds

Higher levels mean more security controls were verified.

A verified provenance badge means the bundle was built in a GitHub Actions workflow and the registry verified the OIDC token. You can trace the bundle back to the exact commit that produced it. See Provenance.

  • Download count: Higher downloads suggest wider adoption (but not necessarily quality)
  • Last updated: Recent updates suggest active maintenance
  • Publisher: Check the org/user’s other packages and GitHub profile

Everything visible on mpak.dev is also accessible from the terminal:

Terminal window
# Search for packages (table with NAME, VERSION, TRUST, DESCRIPTION)
mpak bundle search postgres
# View package details (includes Trust section with certification level)
mpak bundle show @nimblebraininc/postgres-mcp

The CLI search displays a table with a TRUST column showing the certification level (L1-L4 or - if not scanned). The show command includes a full Trust section with the level name and controls passed.

See search and show for full CLI documentation.