A Claude Code plugin marketplace that lets you install and configure the QRStuff MCP server in Claude with a couple of commands — no manual JSON editing required.
This repository is a Claude Code marketplace (qrstuff-cc-plugins) that distributes a single plugin:
| Plugin | Description |
|---|---|
qrstuff-mcp-server |
Adds the QRStuff MCP server to Claude Code, giving Claude access to the QRStuff platform for QR code generation and related tools. |
When you install the plugin, Claude Code registers the remote MCP server at https://mcp.qrstuff.ai/mcp for you.
- Claude Code installed and signed in.
You can add the marketplace and install the plugin either from within an interactive Claude Code session (using /plugin slash commands) or from your terminal (using claude plugin subcommands).
- Add this marketplace:
/plugin marketplace add qrstuff/claude-code-plugins
- Install the plugin:
/plugin install qrstuff-mcp-server@qrstuff-cc-plugins
claude plugin marketplace add qrstuff/claude-code-plugins
claude plugin install qrstuff-mcp-server@qrstuff-cc-pluginsThe
qrstuff/claude-code-pluginsshorthand resolves to this GitHub repository (https://github.com/qrstuff/claude-code-plugins). You can also pass the full URL:claude plugin marketplace add https://github.com/qrstuff/claude-code-plugins.git
Once the plugin is installed, the QRStuff MCP server is available to Claude automatically. Start (or restart) a Claude Code session and the qrstuff MCP server will be connected.
You can then ask Claude to use QRStuff in natural language, for example:
"Generate a QR code for https://qrstuff.com using QRStuff."
To confirm the server is connected, list the active MCP servers:
/mcp
You should see qrstuff in the list of connected servers.
When a new version of the plugin or marketplace is published, refresh your local copy:
/plugin marketplace update qrstuff-cc-plugins
Or from the terminal:
claude plugin marketplace update qrstuff-cc-pluginsRemove the plugin:
/plugin uninstall qrstuff-mcp-server@qrstuff-cc-plugins
Remove the marketplace entirely:
/plugin marketplace remove qrstuff-cc-plugins
.
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog (lists the plugins)
└── plugins/
└── qrstuff-mcp-server/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
└── .mcp.json # MCP server configuration
- Marketplace not found: make sure you ran
/plugin marketplace add qrstuff/claude-code-pluginsand that you have network access to GitHub. qrstuffserver not listed in/mcp: restart your Claude Code session after installing, then run/mcpagain.- Plugin not updating: versions are pinned via
.claude-plugin/plugin.json. Run/plugin marketplace update qrstuff-cc-pluginsto fetch the latest catalog.
For more on how marketplaces and plugins work, see the official Claude Code plugin marketplace documentation.
With ❤️ From QRStuff