A Codex plugin marketplace that lets you install and configure the QRStuff MCP server in the OpenAI Codex CLI with a single command — no manual TOML editing required.
This repository is a Codex marketplace (qrstuff-codex-plugins) that distributes a single plugin:
| Plugin | Description |
|---|---|
qrstuff-mcp-server |
Adds the QRStuff MCP server to OpenAI Codex, giving Codex access to the QRStuff platform for QR code generation and scan analytics. |
When you install the plugin, Codex CLI registers the remote MCP server at https://mcp.qrstuff.ai/mcp for you.
- OpenAI Codex CLI installed and signed in.
You can add the marketplace and install the plugin either from within an interactive Codex CLI session (using /marketplace slash commands) or from your terminal (using codex subcommands).
- Add this marketplace:
/marketplace add qrstuff/codex-plugins
- Install the plugin:
/plugin install qrstuff-mcp-server@qrstuff-codex-plugins
codex marketplace add qrstuff/codex-plugins
codex plugin install qrstuff-mcp-server@qrstuff-codex-pluginsThe
qrstuff/codex-pluginsshorthand resolves to this GitHub repository (https://github.com/qrstuff/codex-plugins). You can also pass the full URL:codex marketplace add https://github.com/qrstuff/codex-plugins.git
Once the plugin is installed, the QRStuff MCP server is available to Codex automatically. Start (or restart) a Codex CLI session and the qrstuff MCP server will be connected.
You can then ask Codex 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:
codex mcp list
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:
codex marketplace update qrstuff-codex-plugins
Remove the plugin:
codex plugin uninstall qrstuff-mcp-server@qrstuff-codex-plugins
Remove the marketplace entirely:
codex marketplace remove qrstuff-codex-plugins
.
├── .codex-plugin/
│ └── marketplace.json # Marketplace catalog (lists the plugins)
└── plugins/
└── qrstuff-mcp-server/
├── .codex-plugin/
│ └── plugin.json # Plugin manifest
├── assets/
│ └── logo.png # Plugin logo
├── skills/
│ └── CODEX.md # Custom agent instructions
├── mcp.json # MCP server configuration
└── README.md # Plugin-specific documentation
- Marketplace not found: make sure you ran
codex marketplace add qrstuff/codex-pluginsand that you have network access to GitHub. qrstuffserver not listed incodex mcp list: restart your Codex CLI session after installing.- Plugin not updating: versions are pinned via
.codex-plugin/plugin.json. Runcodex marketplace update qrstuff-codex-pluginsto fetch the latest catalog.
For more on how marketplaces and plugins work, see the official OpenAI Codex developer documentation.
With ❤️ From QRStuff