<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: qr cow</title>
    <description>The latest articles on DEV Community by qr cow (@qr-cow).</description>
    <link>https://dev.to/qr-cow</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4103845%2Fa4a15b45-5269-49b7-b772-ac7e6b155e23.png</url>
      <title>DEV Community: qr cow</title>
      <link>https://dev.to/qr-cow</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/qr-cow"/>
    <language>en</language>
    <item>
      <title>Let Your AI Assistant Make QR Codes, the qr-cow MCP Server</title>
      <dc:creator>qr cow</dc:creator>
      <pubDate>Tue, 01 Sep 2026 08:24:04 +0000</pubDate>
      <link>https://dev.to/qr-cow/generate-qr-codes-with-ai-meet-the-qr-cow-mcp-server-1ail</link>
      <guid>https://dev.to/qr-cow/generate-qr-codes-with-ai-meet-the-qr-cow-mcp-server-1ail</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzgwdyagv9s0or1iqxxou.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzgwdyagv9s0or1iqxxou.png" alt=" " width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;qr-cow now speaks MCP. If that sentence means nothing to you yet, here is the practical version: you can open Claude, Cursor, or Zed, type "make a QR code for my new menu", and it happens — in your account, styled, saved, and trackable. This post covers what MCP is, the one-minute setup, and the eight things your assistant can now do with QR codes.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is MCP?
&lt;/h2&gt;

&lt;p&gt;The Model Context Protocol is an open standard, published by Anthropic, that lets AI assistants call external tools. An MCP server describes a set of actions ("create a QR code", "fetch scan analytics"), and any MCP-capable client (Claude Desktop, Claude Code, Cursor, Zed, and a fast-growing list of others) can discover and use them mid-conversation.&lt;/p&gt;

&lt;p&gt;Our server is called &lt;code&gt;qr-cow-mcp&lt;/code&gt;. It is a small, open source Python package (MIT licensed, &lt;a href="https://github.com/qrcow/qr_cow_mcp" rel="noopener noreferrer"&gt;source on GitHub&lt;/a&gt;) that forwards your assistant's requests to the same public API our &lt;a href="https://qr-cow.com/docs" rel="noopener noreferrer"&gt;API &amp;amp; MCP docs&lt;/a&gt; describe. No magic in the middle.&lt;/p&gt;

&lt;h2&gt;
  
  
  Set it up in one minute
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Sign in at &lt;a href="https://qr-cow.com" rel="noopener noreferrer"&gt;qr-cow.com&lt;/a&gt; and open &lt;strong&gt;Dashboard → API &amp;amp; MCP&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Create token&lt;/strong&gt; and copy the &lt;code&gt;qrc_live_…&lt;/code&gt; value (it is shown once).&lt;/li&gt;
&lt;li&gt;Add this to your MCP client's config (this example is Claude Desktop's &lt;code&gt;mcpServers&lt;/code&gt; block):
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"qr-cow"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"qr-cow-mcp"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"QRCOW_API_TOKEN"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"qrc_live_..."&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart the client and the qr-cow tools appear. There is nothing to install beforehand: &lt;code&gt;uvx&lt;/code&gt; fetches the package from PyPI on first run. Cursor and Zed use the same shape (a command, args, and an env block); their MCP docs show where it goes.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you can ask for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;"Make a QR code that goes to my menu page, call it Café menu."&lt;/li&gt;
&lt;li&gt;"Render a QR for acme.com in the ocean preset, 600 pixels, transparent background."&lt;/li&gt;
&lt;li&gt;"Generate ten styled QR codes for these ten booth URLs." (This is where doing it by hand stops being fun and an assistant shines.)&lt;/li&gt;
&lt;li&gt;"Which countries scanned the café menu last week? Which hours are busiest?"&lt;/li&gt;
&lt;li&gt;"Point the printed menu code at /menu-v2 instead."&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The eight tools
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;create_qrcode&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Create and save a static or dynamic QR code (URL, Wi-Fi, vCard, and 10 more types) in your account.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;render_styled_qrcode&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Render a fully styled image (dot and eye shapes, gradients, logo) from data plus a preset, without saving anything. Returns the image into the chat.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;list_qrcodes&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;List your recent codes, newest first.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_qrcode&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Fetch one code with its current destination and design.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;update_qrcode_destination&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Change where a dynamic code points. The printed code keeps working.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;delete_qrcode&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Soft-delete a code.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;get_qrcode_analytics&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Scans, unique scanners, and breakdowns by country, device, and hour of day.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;me&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Your profile and current plan.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  The printed-code trick, explained
&lt;/h2&gt;

&lt;p&gt;The most useful prompt in the list above is the least flashy one: retargeting a code that is already printed. That works because &lt;a href="https://qr-cow.com/blog/static-vs-dynamic-qr-codes" rel="noopener noreferrer"&gt;dynamic QR codes&lt;/a&gt; encode a short redirect URL rather than the destination itself, so the destination stays editable forever. Your assistant changing it in one sentence beats reprinting 500 flyers.&lt;/p&gt;

&lt;p&gt;It is also why the analytics tool has something to report: every scan of a dynamic code passes through the redirect, which is what powers the &lt;a href="https://qr-cow.com/blog/what-qr-code-analytics-tell-you" rel="noopener noreferrer"&gt;country, device, and time-of-day breakdowns&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Privacy notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The server is a thin pass-through. Your token lives in your own config file and is only ever sent to the qr-cow API as an authorization header.&lt;/li&gt;
&lt;li&gt;No telemetry, no third-party calls, no storage in the middle.&lt;/li&gt;
&lt;li&gt;Rendering without saving (&lt;code&gt;render_styled_qrcode&lt;/code&gt;) is stateless: nothing appears in your account unless you ask to save.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where to get it
&lt;/h2&gt;

&lt;p&gt;The package is on &lt;a href="https://pypi.org/project/qr-cow-mcp/" rel="noopener noreferrer"&gt;PyPI as qr-cow-mcp&lt;/a&gt;, the source is on &lt;a href="https://github.com/qrcow/qr_cow_mcp" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;, and the full setup reference lives in the &lt;a href="https://qr-cow.com/docs" rel="noopener noreferrer"&gt;API &amp;amp; MCP docs&lt;/a&gt;. Static QR codes are free on every plan; dynamic codes with analytics start at $3/month, and the free plan includes a few to play with.&lt;/p&gt;

&lt;p&gt;If you wire it into something interesting, tell us — we read every message to &lt;a href="mailto:hi@qr-cow.com"&gt;hi@qr-cow.com&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published on the &lt;a href="https://qr-cow.com/blog/generate-qr-codes-with-ai-mcp-server" rel="noopener noreferrer"&gt;qr-cow blog&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>python</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
