wwise-waapi-mcp 1.0.1 → 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 CHANGED
@@ -198,7 +198,7 @@ Use the `session.configure` tool at runtime to switch the target port without re
198
198
  The change is persisted to `runtime.json` and the current WAAPI session is disconnected.
199
199
  The next WAAPI call automatically reconnects to the new port.
200
200
 
201
- Use `session.getConfig` to check the currently configured URL and connection status.
201
+ Use `session.getConfig` to check the currently configured URL.
202
202
 
203
203
  ## Access filtering
204
204
 
package/README_ZH.md CHANGED
@@ -198,7 +198,7 @@ ws://127.0.0.1:8080/waapi
198
198
  该变更会持久化到 `runtime.json`,同时断开当前 WAAPI 会话。
199
199
  下一次 WAAPI 工具调用时将自动以新端口重新建立连接。
200
200
 
201
- 使用 `session.getConfig` 可查看当前配置的连接地址及会话状态。
201
+ 使用 `session.getConfig` 可查看当前配置的连接地址。
202
202
 
203
203
  ## 访问过滤
204
204
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wwise-waapi-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Progressive-disclosure MCP server scaffold for Wwise WAAPI",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
@@ -28,8 +28,7 @@
28
28
  "dist/**/*",
29
29
  "config/**/*",
30
30
  "README.md",
31
- "README_ZH.md",
32
- "CHANGELOG.md"
31
+ "README_ZH.md"
33
32
  ],
34
33
  "pkg": {
35
34
  "assets": [
package/CHANGELOG.md DELETED
@@ -1,38 +0,0 @@
1
- # Changelog
2
-
3
- ## [1.0.1] - 2026-03-28
4
-
5
- ### Added
6
-
7
- - **Session domain** (`src/domains/session/tools.ts`): two new discovery tools for managing the WAAPI connection at runtime.
8
-
9
- | Tool | Description |
10
- | :-- | :-- |
11
- | `session.configure` | Update the WAAPI port used to reach Wwise Authoring. Persists the new URL to `config/runtime.json` and disconnects the active session so the next WAAPI call reconnects automatically. |
12
- | `session.getConfig` | Return the currently configured WAAPI URL and whether a session is active. |
13
-
14
- - **`setWaapiUrl(url)`** and **`isSessionActive()`** exports in `src/lib/waapiClient.ts`.
15
-
16
- ### Changed
17
-
18
- - `session.configure` and `session.getConfig` are registered as `isDiscoveryTool: true`, meaning they appear directly in the MCP `tools/list` response alongside the `catalog.*` tools — no `catalog.executeTool` wrapper needed.
19
- - `config/domains.json`: added `session` domain metadata entry.
20
- - `tests/verify.ts`: updated expected discovery tool count from 4 to 6; added assertions for the two new session tools.
21
- - `README.md` / `README_ZH.md`: updated exposed tools list; expanded "WAAPI connection" section to explain multi-instance port usage.
22
-
23
- ### Background
24
-
25
- Each Wwise Authoring instance exposes WAAPI on a separately configurable port (default 8080). When multiple Wwise instances run on the same machine, each must use a different port — if the chosen port is already taken, the later instance fails to start its WAAPI server. `session.configure` provides the runtime entry point for switching between those instances without restarting the MCP server.
26
-
27
- ---
28
-
29
- ## [1.0.0] - 2026-03-27
30
-
31
- Initial release.
32
-
33
- - Progressive-disclosure MCP surface: only `catalog.*` discovery tools in `tools/list`.
34
- - Runtime-backed WAAPI tools across 18 domains.
35
- - stdio and HTTP/SSE transport modes.
36
- - Standard response envelope `{ ok, data | error }`.
37
- - Structured logging with sensitive-field redaction.
38
- - EXE packaging support via `npm run package:exe`.