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

@studiosolid/shopware-mcp

v1.2.0

Published

A local Model Context Protocol (MCP) server for Shopware plugin development

Readme

Shopware MCP

A local Model Context Protocol (MCP) server for Shopware plugin development. This project aims to automate bugfixing for Shopware plugins as much as possible by considering support tickets, affected Shopware versions, and affected plugin versions using LLMs in your IDE.

Tools

  • ✅ "start-plugin-fix": Detailed instructions on how to approach fixing a bug in a Shopware plugin
  • ✅ "get-support-ticket": Support ticket information retrieval (Sensitive data and customer information are stored in dedicated properties, which are not passed to the LLM. However, if a customer includes sensitive data directly in the ticket content, it will be.)
  • ✅ "check-environment" and "setup-environment": Environment setup based on support ticket information (cloning of Shopware and plugin repo in affected versions)
  • 👷‍♂️ Planned: Check code, run existing tests and interact with the browser via MCP to fix bugs

Note: I'm new to MCP development. I'm open to any suggestions and tips!

Connect to server

Currently you will have to work with a project specific MCP configuration. Right now this is the only way to be able to provide path information about the project to the MCP server on a per project basis.

Create .cursor/mcp.json (in case you are using Cursor) in your desired project location with the following content:

{
  "mcpServers": {
    "shopware-mcp": {
      "command": "npx",
      "args": ["-y", "@studiosolid/shopware-mcp"],
      "env": {
        "SHOPWARE_ACCOUNT_EMAIL": "YOUR_SHOPWARE_ACCOUNT_EMAIL",
        "SHOPWARE_ACCOUNT_PASSWORD": "YOUR_SHOPWARE_ACCOUNT_PASSWORD"
        "PROJECT_DIRECTORY": "/absolute/path/to/project"
      }
    }
  }
}

Check it's connecting successfully. Then you can prompt something like:

Use "start-plugin-fix" to stat fixing the plugin affected by support ticket ABCDE-123456.

or also simply

Can you show me info about ABCDE-123456?