# io.github.sam-moreton/openqr (remote · openqr.uk)

Generate QR codes; create, edit & track dynamic QR codes with scan analytics. Free, no watermark.

- Trust score: 63/100 (medium)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `openqr.uk`: 63/100 (this document), [markdown](https://verifymcp.io/servers/sam-moreton-openqr/openqr.md), [page](https://verifymcp.io/servers/sam-moreton-openqr/openqr)

## Channel facts

- Endpoint: `https://openqr.uk/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 51/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 13 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 793 tokens (~61/item across 13 items; 13 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 94/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 83% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http sam-moreton-openqr https://openqr.uk/mcp
```

### Codex

```toml
[mcp_servers.sam-moreton-openqr]
url = "https://openqr.uk/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "sam-moreton-openqr": {
      "type": "remote",
      "url": "https://openqr.uk/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add sam-moreton-openqr --url https://openqr.uk/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  sam-moreton-openqr:
    url: "https://openqr.uk/mcp"
```

### Other

```json
{
  "mcpServers": {
    "sam-moreton-openqr": {
      "type": "http",
      "url": "https://openqr.uk/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 63, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 62, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 62, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 62, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 61, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 60, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 60)

First indexed and scored.

## MCP tools (13)

### `generate_qr` (~110 tokens)

Generate a static QR code from any text/URL. Returns a PNG image (or SVG markup). Requires an OpenQR API key.

Input parameters:

- `data` (string, required): The content to encode (URL or text).
- `format` (string): Output format (default png).
- `size` (number): Pixel size, 64–2048 (default 512).
- `theme` (string): A saved theme id or name. Applies the theme's colours (SVG); full styling applies to dynamic codes.

### `create_dynamic_qr` (~79 tokens)

Create an editable (dynamic) QR code whose destination you can change later without reprinting. Requires an OpenQR API key.

Input parameters:

- `destination` (string, required): The http(s) URL the code should point to.
- `label` (string): Optional label.
- `theme` (string): A saved theme id or name to style the code with.

### `update_dynamic_qr` (~165 tokens)

Edit a dynamic QR code: change its destination, label, custom short link (slug), tags or folder. Pass only the fields you want to change. Requires an OpenQR API key.

Input parameters:

- `destination` (string): New http(s) URL.
- `folder_id` (string|null): Move into a folder id, or null to un-file.
- `id` (string, required): The dynamic code id.
- `label` (string): New label.
- `slug` (string): Custom short-link back-half (oqr.to/<slug>): 3–48 letters, numbers or hyphens.
- `tags` (array): Replace the code's tags (max 10).
- `theme` (string): A saved theme id or name to restyle the code with.

### `get_scans` (~36 tokens)

Get scan statistics for a dynamic QR code. Requires an OpenQR API key.

Input parameters:

- `id` (string, required): The dynamic code id.

### `list_dynamic_qr` (~57 tokens)

List your dynamic (editable) QR codes — id, short URL, destination, label and status. Requires an OpenQR API key.

Input parameters:

- `limit` (number): Max codes to return, 1–500 (default 200).

### `delete_dynamic_qr` (~42 tokens)

Permanently delete a dynamic QR code. The short link stops working. Requires an OpenQR API key.

Input parameters:

- `id` (string, required): The dynamic code id.

### `bulk_create_dynamic_qr` (~57 tokens)

Create up to 200 dynamic QR codes at once. Requires an OpenQR API key.

Input parameters:

- `codes` (array, required): Codes to create.
- `theme` (string): A saved theme id or name applied to every code created.

### `list_folders` (~24 tokens)

List your folders (id and name). Requires an OpenQR API key.

### `create_folder` (~29 tokens)

Create a folder to organise codes. Requires an OpenQR API key.

Input parameters:

- `name` (string, required)

### `delete_folder` (~36 tokens)

Delete a folder (its codes are un-filed, not deleted). Requires an OpenQR API key.

Input parameters:

- `id` (string, required)

### `list_themes` (~45 tokens)

List your saved style themes (id, name) — apply one by passing its id or name as `theme` to generate/create/update tools. Requires an OpenQR API key.

### `create_theme` (~77 tokens)

Save a reusable style theme. `style` is a QR style object (fgColor, bgColor, dotType, cornerSquareType, etc.). Requires an OpenQR API key.

Input parameters:

- `name` (string, required)
- `style` (object, required): QR style JSON (colours, dot/corner shapes, logo, gradient, frame…).

### `delete_theme` (~36 tokens)

Delete a saved theme. Codes already styled with it keep their look. Requires an OpenQR API key.

Input parameters:

- `id` (string, required)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/sam-moreton-openqr/openqr#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 62
- 2026-08-01: 62
- 2026-07-31: 62
- 2026-07-30: 62
- 2026-07-29: 62
- 2026-07-28: 61
- 2026-07-27: 60
- 2026-07-26: 60

## Links

- Remote endpoint: https://openqr.uk/mcp
- Authorisation metadata: https://openqr.uk/.well-known/oauth-protected-resource/mcp
- Repository: https://github.com/sam-moreton/openqr
- Website: https://openqr.uk/api
- Changelog RSS feed: https://verifymcp.io/servers/sam-moreton-openqr/openqr/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/sam-moreton-openqr/openqr/changelog.json
- HTML version of this page: https://verifymcp.io/servers/sam-moreton-openqr/openqr
