@open-qr/mcp 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -4,9 +4,9 @@ MCP server for [OpenQR](https://openqr.uk): generate QR codes and create, edit
|
|
|
4
4
|
and track dynamic (editable) QR codes with scan analytics.
|
|
5
5
|
|
|
6
6
|
A thin stdio-to-HTTP bridge: it forwards MCP traffic between your client and the
|
|
7
|
-
hosted endpoint at `https://openqr.uk/mcp`. No tools are implemented here, so
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
hosted endpoint at `https://openqr.uk/mcp`. No tools are implemented here, so the
|
|
8
|
+
tool list always matches what the hosted server exposes — run `tools/list` from
|
|
9
|
+
your client to see the current set.
|
|
10
10
|
|
|
11
11
|
## Setup
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-qr/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for OpenQR (https://openqr.uk): generate QR codes and create, edit and track dynamic (editable) QR codes with scan analytics. Bridges stdio MCP clients to the hosted endpoint.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"type": "module",
|
|
@@ -29,5 +29,6 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@modelcontextprotocol/sdk": "^1.30.0"
|
|
32
|
-
}
|
|
32
|
+
},
|
|
33
|
+
"mcpName": "uk.openqr/qr"
|
|
33
34
|
}
|