@chromium-style-qrcode/mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@chromium-style-qrcode/mcpgenerate a QR code for https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@chromium-style-qrcode/mcp
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).
Features
Chromium-style rendering — circular dot modules, rounded locator corners, matching the QR codes generated by Google Chrome
Dino logo — the iconic Chrome Dino is drawn in the center by default
Custom center image — supply a Base64-encoded image to replace the Dino
Toggle center image — set
showLogo: falseto generate a plain QR codeMCP-native — communicates over stdio, works with any MCP-compatible client
Related MCP server: QR Code MCP Server
Installation
Note: The
type: "stdio"field is not required — it's the default transport for MCP servers configured withcommandandargs.
Using npx (recommended)
No installation required:
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "npx",
"args": ["-y", "@chromium-style-qrcode/mcp"]
}
}
}Using bunx
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "bunx",
"args": ["@chromium-style-qrcode/mcp"]
}
}
}Global install
npm install -g @chromium-style-qrcode/mcpThen configure the MCP client:
{
"mcpServers": {
"io.github.chromium-style-qrcode/mcp": {
"command": "chromium-style-qrcode-mcp"
}
}
}Tool
generate_qr_code
Generate a Chromium-style QR code and return it as a PNG image.
Parameters
Parameter | Type | Required | Default | Description |
|
| Yes | — | The text or URL to encode |
|
| No |
| Whether to show a center logo |
|
| No | — | Base64-encoded image to use as the center logo instead of the Dino |
Examples
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>"
}Development
# Install dependencies
bun install
# Run in development
bun run start
# Build
bun run build
# Lint & format
bun run lint
bun run formatRequirements
Node.js >= 22.14.0
License
This server cannot be deployed
Maintenance
Related MCP Connectors
qart.uk MCP server: resolve scanned codes, browse the free pool, and buy QR artwork.
Generate QR codes and create, edit and track dynamic (editable) QR codes with scan analytics, over a hosted MCP server plus a free REST API. Free, no watermark, no expiry. Every tool takes a free API key from https://openqr.uk/api.
Remote MCP server for Scanduro QR codes, scan analytics and controlled code actions.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that generates customizable QR codes with options for size, colors, error correction, and margin settings.18MIT
- AlicenseAqualityDmaintenanceEnables generation of QR codes from text or URLs in multiple formats (DataURL, SVG, terminal display) with customizable options like error correction, colors, and size. Supports batch processing of multiple QR codes and integrates seamlessly with MCP-compatible clients.44MIT
- FlicenseNot gradedqualityDmaintenanceAn advanced MCP server for generating styled QR codes with logos, batch processing, and specialized formats like WiFi or vCards. It also provides tools to decode existing QR code images and analyze their quality or content.-
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides tools for scanning and extracting data from QR codes using single or multiple image URLs. It supports both individual and batch processing to retrieve encoded information from images hosted online.4 npmMIT