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

@shopware-ag/admin-mcp

v0.1.1

Published

A Model Context Protocol (MCP) server that provides AI assistants with direct access to Shopware's Admin API for product management tasks.

Readme

Shopware Admin MCP Server

A Model Context Protocol (MCP) server that provides AI assistants with direct access to Shopware's Admin API for product management tasks.

Features

  • Product Management: List, search, create, and update products with media support
  • Category Management: List, create, update, and delete categories (supports bulk operations)
  • Sales Channel Management: List sales channels for product visibility
  • Media Management: Upload media from URLs for product images
  • Order Management: List and view orders
  • Theme Management: Change theme colors and logos
  • Shopware Integration: Native integration with Shopware Admin API

Available MCP Tools

| Tool | Description | Parameters | |------|-------------|------------| | product_list | Search and paginate products | page, term (optional) | | product_get | Get detailed product information | id | | product_create | Create new products with pricing and media | name, productNumber, description, taxRate, stock, netPrice, grossPrice, active (optional), visibilities (optional), categories (optional), media (optional) | | product_update | Update existing products | id, active (optional), name (optional), description (optional), stock (optional), visibilities (optional), categories (optional), media (optional) | | category_list | List all categories | None | | category_create | Create categories (supports bulk) | categories (array with name, parentId optional, active optional) | | category_update | Update categories (supports bulk) | categories (array with id, name optional, parentId optional, active optional) | | category_delete | Delete categories | ids (array of category IDs) | | sales_channel_list | List all sales channels | None | | sales_channel_update | Update a sales channel | id, active (optional), maintenance (optional) | | upload_media_by_url | Upload media from URL | url, fileName | | order_list | List all orders | page, filters (optional) | | order_detail | Get detailed order information | id | | order_update | Update an order | id, status (optional) | | theme_config_get | Get the theme configuration for a sales channel | salesChannelId | | theme_config_change | Change the theme configuration for a sales channel | salesChannelId, themeId, brandPrimaryColor (optional), brandSecondaryColor (optional), brandBackgroundColor (optional), logoId (optional) | | fetch_entity_list | List all available entities in Shopware | None | | fetch_single_entity_schema | Get the schema for a single entity | entity | | dal_aggregate | Aggregate data from the DAL | entity, type, field, filter (optional) |

Prerequisites

  • Shopware 6 instance with admin access
  • Node.js 22+ for development

Installation

Create a Integration in Shopware Admin with permission to create, read, update, delete products.

Set following environment variables:

  • SHOPWARE_API_URL: URL of your Shopware instance (e.g., https://your-shopware-instance.com)
  • SHOPWARE_API_CLIENT_ID: Client ID of the created integration
  • SHOPWARE_API_CLIENT_SECRET: Client Secret of the created integration

Usage

With mcp.json

Add the following configuration to your mcp.json file:

{
  "mcpServers": {
    "shopware-admin-mcp": {
      "command": "npx",
      "args": ["-y", "@shopware-ag/admin-mcp"],
      "env": {
        "SHOPWARE_API_URL": "https://your-shopware-instance.com",
        "SHOPWARE_API_CLIENT_ID": "your-integration-client-id",
        "SHOPWARE_API_CLIENT_SECRET": "your-integration-client-secret"
      }
    }
  }
}

Development

Local Development

# Start local development server in stdio mode
npm run dev

Code Quality

# Format code
npm run format

# Fix linting issues
npm run lint:fix

# Run type checking
npm run type-check

Permissions

| Entity | Read | Create | Update | Delete | |--------------------------|------|--------|--------|--------| | Product | ✅ | ✅ | ✅ | ✅ | | Product Translation | ✅ | ✅ | ✅ | ✅ | | Product Visibility | ✅ | ✅ | ✅ | ✅ | | Product Category | ✅ | ✅ | ✅ | ✅ | | Product Media | ✅ | ✅ | ✅ | ✅ | | Category | ✅ | ✅ | ✅ | ✅ | | Category Translation | ✅ | ✅ | ✅ | ✅ | | Sales Channel | ✅ | ✅ | ✅ | ✅ | | Media | ✅ | ✅ | ✅ | ✅ | | Media Default Folder | ✅ | ✅ | ✅ | ✅ | | Media Folder | ✅ | ✅ | ✅ | ✅ | | Tax | ✅ | ✅ | ✅ | ✅ | | Theme | ✅ | ✅ | ✅ | ✅ | | Theme Translation | ✅ | ✅ | ✅ | ✅ | | Theme Media | ✅ | ✅ | ✅ | ✅ | | Theme Sales Channel | ✅ | ✅ | ✅ | ✅ | | Order | ✅ | ✅ | ✅ | ✅ | | Order Customer | ✅ | ✅ | ✅ | ✅ | | Order Delivery | ✅ | ✅ | ✅ | ✅ | | Order Transaction | ✅ | ✅ | ✅ | ✅ |

License

MIT License - see LICENSE file for details.

Support

For issues and feature requests, please use the GitHub issue tracker.