qr-cow MCP server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@qr-cow MCP serverMake a QR code for https://my-cafe.com/menu"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
qr-cow MCP server
An MCP server that exposes the customer-facing qr-cow.com API to any MCP-compatible AI client (Claude Desktop, Claude Code, Cursor, Zed, …).
Once connected, you can say things like:
"Make a QR code that goes to https://my-cafe.com/menu, call it Café menu" "Render a styled QR for https://acme.com in the ocean preset, 600px" "Show me which countries scanned my café menu last week" "Change the destination of the café menu QR to /menu-v2"
…and the assistant calls the API on your behalf.
1. Create a token
Sign in at https://qr-cow.com.
Go to Dashboard → API & MCP.
Click Create token. Give it a name like "Claude Desktop".
Copy the
qrc_live_…value that appears. It's shown once.
Related MCP server: @restforge-dev/mcp-server
2. Wire it into your MCP client
Claude Desktop / Claude Code
Add to ~/.claude.json (or your platform's equivalent config):
{
"mcpServers": {
"qr-cow": {
"command": "uvx",
"args": ["qr-cow-mcp"],
"env": {
"QRCOW_API_TOKEN": "qrc_live_..."
}
}
}
}Restart the client. You should see qr-cow tools listed.
Cursor / Zed
Same shape — pass command, args, and an env block with
QRCOW_API_TOKEN. See their MCP docs for the exact key.
Self-hosted qr-cow
Set QRCOW_API_BASE (defaults to https://qr-cow.com/api) to point at
your install:
"env": {
"QRCOW_API_TOKEN": "qrc_live_...",
"QRCOW_API_BASE": "https://your-host/api"
}Tools
Tool | What it does |
| Create and save a static or dynamic QR (URL, Wi-Fi, vCard, …) in your account. |
| Render a fully styled QR image (dot/eye shapes, gradient, logo) from data plus a preset or style, without saving it. Returns the image. |
| List recent QR codes in your account. |
| Fetch one QR code with its current destination + design. |
| Change a dynamic QR's destination — the printed code keeps working. |
| Soft-delete a code. |
| Scans, unique scanners, country / device / hour-of-day breakdown. |
| The signed-in user's profile + current plan. |
Develop locally
git clone https://github.com/qrcow/qr_cow_mcp.git
cd qr_cow_mcp
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"
pytest
# Try it out — auth doesn't matter for startup
QRCOW_API_TOKEN=qrc_live_local QRCOW_API_BASE=http://localhost:8080/api qr-cow-mcpThe server speaks stdio, so the easiest way to manually exercise it is through an MCP client.
Privacy & security
The server is a thin pass-through: your token stays in your MCP client config and is only ever sent to the qr-cow API (or the
QRCOW_API_BASEyou configure) as aBearerheader.No telemetry, no third-party calls. Requests carry a
User-Agent: qr-cow-mcp/<version>header so the API can distinguish MCP traffic.
Contributing & releases
CONTRIBUTING.md — dev setup, style, how to send a PR.
CHANGELOG.md — what changed in each release.
RELEASING.md — how maintainers cut a release (tag → CI → PyPI).
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceProduction-ready MCP server with 40+ tools — QR codes, PDFs, text processing, TTS, web scraping, image generation and more. Built for AI agents.Last updated2537MIT
- AlicenseAqualityCmaintenanceMCP server that exposes RESTForge capabilities to AI agents, enabling them to set up, configure, generate code, and manage RESTForge projects through natural language.Last updated2944MIT
- Flicense-qualityBmaintenanceMCP server that connects local ComfyUI to AI agents, enabling natural language control of ComfyUI for creating workflows, generating images, and managing the queue.Last updated
- AlicenseBqualityDmaintenanceMCP server that exposes QuantXData's institutional crypto market data APIs to AI assistants, enabling natural language queries for trades, order books, OHLCV, options, and more across 120+ exchanges.Last updated12MIT
Related MCP Connectors
Create and manage QR codes on me-qr.com from AI clients like Claude and ChatGPT.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/qrcow/qr_cow_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server