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

sutro-mcp-server

v0.1.9

Published

Stdio MCP server for Sutro — exposes Sutro project, app, SLang deploy, and secrets tools to AI editors.

Readme

sutro-mcp-server

Stdio MCP server for Sutro — exposes 16 tools for projects, apps, SLang deploy/publish, and secrets to AI editors (Cursor, Claude Code, VS Code).

Not an official Sutro release. Verify behavior against docs.withsutro.com.

Requirements

Quick start

npx sutro-mcp-server setup

Interactive setup that asks for your bundle path, validates it, detects your editor, and configures everything. If you prefer manual setup, read on.

Manual setup

1. Scaffold agent instruction files into your project

npx sutro-mcp-server init

Writes CLAUDE.md, .github/copilot-instructions.md, and .cursor/rules/sutro.mdc into your project root and prints the MCP config snippet for your editor.

2. Add the MCP server to your editor

Claude Code (CLI)

claude mcp add sutro \
  -e SUTRO_SECURITY_BUNDLE_DIR=/path/to/your/security-bundle \
  -- npx -y sutro-mcp-server

To scope the server to the current project only:

claude mcp add sutro --scope project \
  -e SUTRO_SECURITY_BUNDLE_DIR=/path/to/your/security-bundle \
  -- npx -y sutro-mcp-server

Verify: claude mcp list

Cursor

Add to MCP settings (mcpServers block):

{
  "mcpServers": {
    "sutro": {
      "command": "npx",
      "args": ["-y", "sutro-mcp-server"],
      "env": {
        "SUTRO_SECURITY_BUNDLE_DIR": "/path/to/your/security-bundle",
        "SUTRO_API_BASE": "https://sapi.withsutro.com"
      }
    }
  }
}

VS Code

Add to settings.json:

{
  "mcp": {
    "servers": {
      "sutro": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "sutro-mcp-server"],
        "env": {
          "SUTRO_SECURITY_BUNDLE_DIR": "/path/to/your/security-bundle",
          "SUTRO_API_BASE": "https://sapi.withsutro.com"
        }
      }
    }
  }
}

3. Verify

Ask your editor to call:

  • sutro_validate_bundle — checks bundle files and auth readiness
  • sutro_hello — verifies end-to-end API connectivity

Auth

The server reads a security bundle from SUTRO_SECURITY_BUNDLE_DIR. Required files:

| File | Purpose | | --- | --- | | ca.crt, mtls.crt, mtls.key | mTLS transport | | builder.jwt | Bearer token (Authorization header) | | apiClient.id | API client ID (x-sutro-api-client header) |

SUTRO_API_BASE is optional (default https://sapi.withsutro.com). If builder.jwt expires, the server refreshes it automatically using signing.pem or mtls.key plus bundle metadata.

Tools

| Tool | Purpose | | --- | --- | | sutro_hello | Verify credentials and connectivity | | sutro_validate_bundle | Check bundle files and auth readiness | | sutro_list_projects | List projects visible to the authenticated builder | | sutro_list_apps | List applications (optional projectId filter) | | sutro_pull_project_data | Pull project metadata and applications | | sutro_pull_app_for_edit | Pull a single application with full SCode | | sutro_get_app | Get application details (includeScode=true for full SCode) | | sutro_get_app_status | Get current deployment/job status | | sutro_get_openapi | Get the OpenAPI spec for an application | | sutro_deploy_slang | Compile and deploy SLang | | sutro_apply_slang_changes | Deploy, verify, and optionally publish in one call | | sutro_apply_slang_from_file | Deploy SLang from a local file path | | sutro_publish_app | Publish live (versionType, replacePublishedVersion) | | sutro_list_secrets | List secret names (values never returned) | | sutro_set_secret | Add or update a secret | | sutro_delete_secret | Remove a secret |

Source

github.com/adrianjonmiller/sutro-mcp-server

License

MIT