š URL2QR MCP Server
A powerful MCP (Model Context Protocol) server that converts URLs into QR codes with downloadable links. Built with Express and TypeScript, providing seamless integration with AI assistants like Claude.
⨠Features
- š URL to QR Code Conversion - Transform any URL into a scannable QR code 
- š„ Downloadable Links - Get HTTP download links for generated QR codes 
- āļø Customizable Options - Control error correction level and image size 
- š Streamable HTTP - Modern MCP transport protocol support 
- š Remote Service Available - Use our hosted service at - http://47.79.147.241:3055/mcp
- š Easy Integration - Works with Claude Desktop and other MCP clients 
- šØ Clean API - RESTful endpoints for health checks and file serving 
š¦ Installation
Via npm (Global)
Via npm (Local Project)
From Source
š Quick Start
Option 1: Use Remote Service (Recommended for Quick Testing) š
No installation needed! We provide a hosted service for immediate use:
Add to your MCP client configuration (e.g., Claude Desktop's claude_desktop_config.json):
⨠That's it! You can now use the QR code generation tool without running your own server.
Option 2: Run Your Own Local Server
1. Start the Server
The server will start on http://localhost:3000 by default.
2. Configure MCP Client
Add to your MCP client configuration (e.g., Claude Desktop's claude_desktop_config.json):
3. Use the Tool
In Claude Desktop or any MCP-compatible client:
The AI will use the url_to_qrcode tool and provide you with a download link!
š§ API Reference
Tool: url_to_qrcode
Converts a URL into a QR code image.
Parameters:
| Parameter | Type | Required | Default | Description | 
| 
 | string | ā Yes | - | The URL to convert into a QR code | 
| 
 | string | ā No | "M" | Error correction level: "L" (7%), "M" (15%), "Q" (25%), "H" (30%) | 
| 
 | number | ā No | 300 | Width of the QR code image in pixels | 
Example Response:
š HTTP Endpoints
GET /
API information and documentation.
GET /health
Health check endpoint.
Response:
POST /mcp
MCP protocol endpoint (JSON-RPC).
GET /qrcodes/:filename
Download generated QR code images.
āļø Configuration
Create a .env file in the project root:
Environment Variables:
- PORT- Server port (default: 3000)
- QR_OUTPUT_DIR- Directory for storing QR code images (default: ./qrcodes)
šļø Project Structure
š Session Management
The server implements automatic session cleanup:
- Sessions expire after 30 minutes of inactivity 
- Cleanup runs every 15 minutes 
- Session IDs are managed via - Mcp-Session-Idheaders
š Deployment Options
Remote Service (Production)
We provide a hosted service at:
- Endpoint: - http://47.79.147.241:3055/mcp
- Health Check: - http://47.79.147.241:3055/health
- Status: š¢ Online and ready to use 
This is perfect for:
- Quick testing without setup 
- Production use without infrastructure 
- Teams sharing a single endpoint 
Local Deployment
Run your own instance for:
- Development and testing 
- Private/isolated environments 
- Custom configurations 
- On-premise requirements 
š Examples
Basic Usage
Custom Error Correction
Custom Size
š¤ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository 
- Create your feature branch ( - git checkout -b feature/AmazingFeature)
- Commit your changes ( - git commit -m 'Add some AmazingFeature')
- Push to the branch ( - git push origin feature/AmazingFeature)
- Open a Pull Request 
š License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
š¤ Author
Xingyu Chen
- GitHub: @guangxiangdebizi 
- LinkedIn: Xingyu Chen 
- npm: @xingyuchen 
- Email: guangxiangdebizi@gmail.com 
š Acknowledgments
- Built with Model Context Protocol SDK 
- QR code generation powered by qrcode 
- Express.js for HTTP server 
š Resources
ā If you find this project useful, please consider giving it a star on GitHub!
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Converts URLs into scannable QR codes with customizable options like error correction levels and image sizes. Provides downloadable links for generated QR codes through a simple MCP tool interface.