Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# QR Code Generator MCP Server
|
| 2 |
|
| 3 |
Generate QR codes from text or URLs using Claude Desktop MCP integration.
|
| 4 |
|
| 5 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
Add this to your Claude Desktop config:
|
|
|
|
| 7 |
```json
|
| 8 |
{
|
| 9 |
"mcpServers": {
|
| 10 |
"qr-generator": {
|
| 11 |
-
"command": "npx",
|
| 12 |
"args": ["-y", "mcp-remote", "https://YOUR_USERNAME-qr-code-generator-mcp.hf.space/gradio_api/mcp/sse"]
|
| 13 |
}
|
| 14 |
}
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: QR Code Generator
|
| 3 |
+
emoji: 📱
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "4.44.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
# QR Code Generator MCP Server
|
| 13 |
|
| 14 |
Generate QR codes from text or URLs using Claude Desktop MCP integration.
|
| 15 |
|
| 16 |
+
## Features
|
| 17 |
+
- Generate QR codes from any text or URL
|
| 18 |
+
- Adjustable size (small, medium, large)
|
| 19 |
+
- Error correction levels (L, M, Q, H)
|
| 20 |
+
- Returns base64 data URL for Claude integration
|
| 21 |
+
|
| 22 |
+
## MCP Connection for Claude Desktop
|
| 23 |
+
|
| 24 |
Add this to your Claude Desktop config:
|
| 25 |
+
|
| 26 |
```json
|
| 27 |
{
|
| 28 |
"mcpServers": {
|
| 29 |
"qr-generator": {
|
| 30 |
+
"command": "npx",
|
| 31 |
"args": ["-y", "mcp-remote", "https://YOUR_USERNAME-qr-code-generator-mcp.hf.space/gradio_api/mcp/sse"]
|
| 32 |
}
|
| 33 |
}
|