home / mcp / qrcode_mcp mcp server

QRCode_MCP MCP Server

A Model Context Protocol (MCP) server for generating simple QR codes. Support custom QR code styles.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "1595901624-qrcode-mcp": {
      "command": "node",
      "args": [
        "path/to/qrcode-mcp/build/index.js"
      ]
    }
  }
}

You can run a QRCode MCP server to generate QR codes with customizable styles, enabling seamless QR creation within your MCP client workflows and automating image generation for apps, dashboards, or tooling that rely on encoded data.

How to use

You interact with the QRCode MCP server by calling its qrcode tool from your MCP client. Use it to generate QR code images from text you provide, and customize the resulting image using size, colors, error correction level, and margins.

Available tool: qrcode Generate a QR code image with configurable options.

Parameters you can pass to the qrcode tool include:

  • text: The text to encode in the QR code (Required)
  • size: The size of the QR code (optional, default is 256)
  • darkColor: Color of the dark modules (optional, default is #000000)
  • lightColor: Color of the light modules (optional, default is #ffffff)
  • errorCorrectionLevel: Error correction level (optional, default is M)
  • margin: Margin around the QR code (optional, default is 4)

Available tools

qrcode

Generates a QR code image from text you provide with options for size, colors, error correction level, and margins.

QRCode_MCP MCP Server - 1595901624/qrcode-mcp