wrapguard-mcp 0.1.0 → 0.1.1
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 +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- mcp-name: io.github.
|
|
1
|
+
<!-- mcp-name: io.github.Yuni9959/wrapguard-mcp -->
|
|
2
2
|
|
|
3
3
|
# WrapGuard MCP
|
|
4
4
|
|
|
@@ -97,7 +97,7 @@ After reviewing the repository name and public contents:
|
|
|
97
97
|
```bash
|
|
98
98
|
git init
|
|
99
99
|
git add .
|
|
100
|
-
git commit -m "feat: release WrapGuard MCP 0.1.
|
|
100
|
+
git commit -m "feat: release WrapGuard MCP 0.1.1"
|
|
101
101
|
gh repo create wrapguard-mcp --public --source . --remote origin --push
|
|
102
102
|
npm login
|
|
103
103
|
npm publish --access public
|
|
@@ -110,11 +110,11 @@ Then validate and publish `server.json` with the official `mcp-publisher`. The n
|
|
|
110
110
|
The included container starts the Streamable HTTP server at `/mcp`:
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
docker build -t wrapguard-mcp:0.1.
|
|
113
|
+
docker build -t wrapguard-mcp:0.1.1 .
|
|
114
114
|
docker run --rm -p 8787:8787 \
|
|
115
115
|
-e WRAPGUARD_HTTP_TOKEN="replace-with-a-long-random-value" \
|
|
116
116
|
-e WRAPGUARD_HTTP_HOSTS="localhost,127.0.0.1" \
|
|
117
|
-
wrapguard-mcp:0.1.
|
|
117
|
+
wrapguard-mcp:0.1.1
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
For a public host, set `WRAPGUARD_HTTP_HOSTS` to the deployed domain and store `WRAPGUARD_HTTP_TOKEN` as a platform secret. Use a container service that supports Playwright/Chromium, such as Cloud Run, Fly.io, Render, Railway, or an equivalent service. Add the final HTTPS URL to the `remotes` field in `server.json` only after the endpoint exists.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrapguard-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server and CLI that detect unnatural Korean and English mid-word wrapping in responsive web pages.",
|
|
5
|
-
"mcpName": "io.github.
|
|
5
|
+
"mcpName": "io.github.Yuni9959/wrapguard-mcp",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"wrapguard-mcp": "dist/stdio.js",
|