pangolint-mcp 0.7.27 → 0.7.28

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,7 +31,7 @@ which pangolint-mcp
31
31
  Or install the `pangolint-mcp` tarball attached to a GitHub Release:
32
32
 
33
33
  ```bash
34
- npm install -g ./pangolint-mcp-0.7.27.tgz
34
+ npm install -g ./pangolint-mcp-0.7.28.tgz
35
35
  which pangolint-mcp
36
36
  ```
37
37
 
@@ -40,7 +40,7 @@ For local development, build the same tarball from a repository checkout:
40
40
  ```bash
41
41
  # from the repository root
42
42
  npm run package:mcp
43
- npm install -g ./mcp/pangolint-mcp-0.7.27.tgz
43
+ npm install -g ./mcp/pangolint-mcp-0.7.28.tgz
44
44
  which pangolint-mcp
45
45
  ```
46
46
 
@@ -124,12 +124,12 @@ calling individual tools.
124
124
  | `PANGOLINT_MCP_BEYOND_TALK_TRANSPORT` | `auto` | `auto`, `tcp`, or `udp`. Auto tries Talk TCP first and only uses UDP when fallback is explicitly allowed. |
125
125
  | `PANGOLINT_MCP_BEYOND_TALK_TCP_HOST` | `127.0.0.1` | BEYOND Talk TCP host. |
126
126
  | `PANGOLINT_MCP_BEYOND_TALK_TCP_PORT` | `16063` | BEYOND Talk TCP port. |
127
- | `PANGOLINT_MCP_BEYOND_TALK_UDP_HOST` | legacy host or `127.0.0.1` | BEYOND Talk UDP fallback host. |
128
- | `PANGOLINT_MCP_BEYOND_TALK_UDP_PORT` | legacy port or `16062` | BEYOND Talk UDP fallback port. |
127
+ | `PANGOLINT_MCP_BEYOND_TALK_UDP_HOST` | Talk host alias or `127.0.0.1` | BEYOND Talk UDP host. |
128
+ | `PANGOLINT_MCP_BEYOND_TALK_UDP_PORT` | Talk port alias or `16062` | BEYOND Talk UDP port. |
129
129
  | `PANGOLINT_MCP_BEYOND_TALK_UDP_FALLBACK_ALLOWED` | (off) | Set to `enabled` (or `1` / `true`) to allow auto mode to use unauthenticated UDP when TCP is unavailable before authentication or command send begins. |
130
130
  | `PANGOLINT_MCP_BEYOND_TALK_TCP_PASSWORD` | (empty) | Optional BEYOND TCP Talk Server password. This value is redacted from runtime output. |
131
- | `PANGOLINT_MCP_BEYOND_TALK_HOST` | `127.0.0.1` | Legacy alias used as the UDP fallback host when `PANGOLINT_MCP_BEYOND_TALK_UDP_HOST` is unset. |
132
- | `PANGOLINT_MCP_BEYOND_TALK_PORT` | `16062` | Legacy alias used as the UDP fallback port when `PANGOLINT_MCP_BEYOND_TALK_UDP_PORT` is unset. |
131
+ | `PANGOLINT_MCP_BEYOND_TALK_HOST` | `127.0.0.1` | UDP host alias used when `PANGOLINT_MCP_BEYOND_TALK_UDP_HOST` is unset. |
132
+ | `PANGOLINT_MCP_BEYOND_TALK_PORT` | `16062` | UDP port alias used when `PANGOLINT_MCP_BEYOND_TALK_UDP_PORT` is unset. |
133
133
  | `PANGOLINT_MCP_BEYOND_OSC_LISTEN_HOST` | `0.0.0.0` | Local interface for OSC callbacks. |
134
134
  | `PANGOLINT_MCP_BEYOND_OSC_LISTEN_PORT` | `7000` | Local UDP port for OSC callbacks. |
135
135
  | `PANGOLINT_MCP_READBACK_TIMEOUT_MS` | `3000` | Readback timeout (ms). |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pangolint-mcp",
3
- "version": "0.7.27",
3
+ "version": "0.7.28",
4
4
  "description": "MCP server exposing PangoLint's curated PangoScript knowledge to AI coding agents.",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "repository": {