QRCode_MCP
A Model Context Protocol (MCP) server for generating simple QR codes. Support custom QR code styles.
Overview
QRCode_MCP is a Model Context Protocol (MCP) server designed for generating simple QR codes with support for custom styles.
To use QRCode_MCP, clone the repository, install the dependencies, and configure it in your MCP settings. You can then generate QR codes using the available tools.
- Support for custom QR code styles - Easy to use with straightforward installation and configuration
- Generating QR codes for product labels
- Creating QR codes for event tickets
- Customizing QR codes for marketing materials
Add to your AI client
Use these steps to connect QRCode_MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"qrcode-mcp-1595901624": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"qrcode-mcp-1595901624": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"qrcode-mcp-1595901624": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"qrcode-mcp-1595901624": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"qrcode-mcp-1595901624": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"qrcode-mcp-1595901624": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-qrcode-mcp-1595901624"
]
}
}
}FAQ
Can I customize the appearance of the QR codes?
Yes! QRCode_MCP allows you to customize the styles of the QR codes.
Is QRCode_MCP free to use?
Yes! QRCode_MCP is open-source and free to use under the MIT License.
What programming language is QRCode_MCP written in?
QRCode_MCP is written in TypeScript.