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

@stora-sh/mcp

v0.1.1

Published

Stora MCP Server — App Store screenshots, ASO, compliance and submission tools for Claude Code, Cursor, Antigravity and any MCP-compatible client

Downloads

231

Readme

@stora-sh/mcp

Stora's Model Context Protocol server. Exposes screenshots, ASO, compliance, and submission tooling to any MCP-compatible client: Claude Code, Cursor, Antigravity, Zed, Windsurf, ChatGPT Desktop.

Stora is the post-code layer. Your IDE writes code; stora handles screenshots, compliance, metadata, and submission.

Install

npm install -g @stora-sh/mcp
# or
npx @stora-sh/mcp

Auth

Grab an API key at https://stora.sh/settings/api-keys. Keys look like sk_stora_….

export STORA_API_KEY=sk_stora_…

For local dev against a self-hosted stora instance:

export STORA_BASE_URL=http://localhost:3000/api/v1

Wiring

Claude Code

Add to ~/.claude/mcp_servers.json (or the equivalent per-project file):

{
  "mcpServers": {
    "stora": {
      "command": "npx",
      "args": ["@stora-sh/mcp"],
      "env": { "STORA_API_KEY": "sk_stora_…" }
    }
  }
}

Cursor

Settings → MCP → Add:

{
  "stora": {
    "command": "npx",
    "args": ["@stora-sh/mcp"],
    "env": { "STORA_API_KEY": "sk_stora_…" }
  }
}

Antigravity / Zed / Windsurf

Same pattern — npx @stora-sh/mcp with STORA_API_KEY in env.

Tools

| Tool | What it does | |---|---| | stora_list_projects | List every Stora project the key can access. | | stora_get_project | Fetch a single project by ID (via listProjects + filter). | | stora_get_metadata | Read active App Store + Play metadata + ASO profile. | | stora_update_metadata | Create a new active metadata version. | | stora_list_screenshots | List screenshot collections for a project. | | stora_generate_screenshots | Start a cloud capture run. | | stora_get_screenshots | Get raw + generated screenshots for a collection. | | stora_check_compliance | Trigger a compliance scan. | | stora_get_compliance_results | Full scan results with issues + scores. | | stora_record_local_submission | Bookkeeping only — does NOT submit to Apple/Google. See below. | | stora_get_status | Latest submission + active version state. |

Submission note

stora_record_local_submission wraps POST /api/v1/projects/:id/submit, which only writes a local submissions row. It does not transmit to App Store Connect or Google Play. For real App Store submission, use the Stora dashboard or call /api/apple/submit-for-review directly. Google Play write-path via v1 is not yet implemented.

Example prompts

  • "Claude, list my Stora projects."
  • "Run a compliance scan on proj_abc123. When it finishes, summarize the critical issues."
  • "Generate screenshots for proj_abc123 on iPhone 17 Pro and iPad Pro 13, then wait for the collection to complete."
  • "Update the iOS subtitle to 'Ship faster' for proj_abc123."

Development

npm install
npm run build
npm test

License

MIT