MCP server for generating Chromium-style QR codes with optional Dino logo or custom center image
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-chromium-style-qrcode-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for generating Chromium-style QR codes with optional Dino logo or custom center image
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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 browser
Browser automation with Puppeteer for web scraping and testing
Self-hosted URL- and file-to-Markdown service for humans and AI agents - web pages, documents, images, audio, YouTube. PWA + REST + MCP + Claude Code skill, Reddit-aware, refreshable share links.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
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