Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-chromium-style-qrcode-mcp": {
"args": [
"-y",
"@chromium-style-qrcode/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server for generating Chromium-style QR codes with circular modules, rounded locators, and an optional center image (Dino logo or custom).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@chromium-style-qrcode/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @chromium-style-qrcode/mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
MCP Security Weekly
Get CVE alerts and security updates for io.github.chromium-style-qrcode/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server for generating Chromium-style QR codes with circular modules, rounded locators, and an optional center image (Dino logo or custom).
showLogo: false to generate a plain QR codeNote: The
type: "stdio"field is not required — it's the default transport for MCP servers configured withcommandandargs.
No installation required:
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "npx",
"args": ["-y", "@chromium-style-qrcode/mcp"]
}
}
}
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "bunx",
"args": ["@chromium-style-qrcode/mcp"]
}
}
}
npm install -g @chromium-style-qrcode/mcp
Then configure the MCP client:
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "chromium-style-qrcode-mcp"
}
}
}
generate_qr_codeGenerate a Chromium-style QR code and return it as a PNG image.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | Yes | — | The text or URL to encode |
showLogo | boolean | No | true | Whether to show a center logo |
customLogo | string | No | — | Base64-encoded image to use as the center logo instead of the Dino |
Basic QR code with Dino logo:
{
"text": "https://example.com"
}
Plain QR code (no center image):
{
"text": "https://example.com",
"showLogo": false
}
QR code with custom center image:
{
"text": "https://example.com",
"customLogo": "<base64-encoded image data>"
}
# Install dependencies
bun install
# Run in development
bun run start
# Build
bun run build
# Lint & format
bun run lint
bun run format