@cyanheads/wsdot-mcp-server 0.1.5 → 0.1.6
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/CLAUDE.md +2 -2
- package/README.md +4 -4
- package/changelog/0.1.x/0.1.6.md +18 -0
- package/package.json +4 -3
- package/server.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** @cyanheads/wsdot-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.
|
|
4
|
+
**Version:** 0.1.6
|
|
5
|
+
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
|
8
8
|
**Zod:** ^4.4.3
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/wsdot-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/wsdot-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -188,7 +188,7 @@ Add the following to your MCP client configuration file. You'll need a WSDOT Tra
|
|
|
188
188
|
```json
|
|
189
189
|
{
|
|
190
190
|
"mcpServers": {
|
|
191
|
-
"wsdot": {
|
|
191
|
+
"wsdot-mcp-server": {
|
|
192
192
|
"type": "stdio",
|
|
193
193
|
"command": "bunx",
|
|
194
194
|
"args": ["@cyanheads/wsdot-mcp-server@latest"],
|
|
@@ -207,7 +207,7 @@ Or with npx (no Bun required):
|
|
|
207
207
|
```json
|
|
208
208
|
{
|
|
209
209
|
"mcpServers": {
|
|
210
|
-
"wsdot": {
|
|
210
|
+
"wsdot-mcp-server": {
|
|
211
211
|
"type": "stdio",
|
|
212
212
|
"command": "npx",
|
|
213
213
|
"args": ["-y", "@cyanheads/wsdot-mcp-server@latest"],
|
|
@@ -226,7 +226,7 @@ Or with Docker:
|
|
|
226
226
|
```json
|
|
227
227
|
{
|
|
228
228
|
"mcpServers": {
|
|
229
|
-
"wsdot": {
|
|
229
|
+
"wsdot-mcp-server": {
|
|
230
230
|
"type": "stdio",
|
|
231
231
|
"command": "docker",
|
|
232
232
|
"args": [
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "mcp-ts-core 0.9.21 — per-request log context fix, secret scrubbing in fetchWithTimeout, withRetry fail-fast on non-retryable errors"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.6 — 2026-06-02
|
|
8
|
+
|
|
9
|
+
## Changed
|
|
10
|
+
|
|
11
|
+
- **`@cyanheads/mcp-ts-core`** ^0.9.16 → ^0.9.21 — per-request logs and traces now carry fresh request + trace/span IDs instead of the frozen boot context; `fetchWithTimeout` strips query-string secrets (e.g. `?api_key=`) from error messages and logs; `withRetry` fails fast on non-retryable errors; `ctx.fail` auto-populates the `retryable` flag.
|
|
12
|
+
- **Skills synced** — `add-tool`, `add-service`, `api-canvas`, `api-context`, `api-linter`, `api-utils`, `design-mcp-server`, `release-and-publish` updated from the 0.9.17–0.9.21 series; new `api-mirror` and `orchestrations` skills added.
|
|
13
|
+
- **`scripts/`** — `check-skill-versions.ts`, `release-github.ts`, and `devcheck.ts` added from framework template sync.
|
|
14
|
+
|
|
15
|
+
## Dependencies
|
|
16
|
+
|
|
17
|
+
- `@cyanheads/mcp-ts-core` ^0.9.16 → ^0.9.21
|
|
18
|
+
- `vitest` ^4.1.7 → ^4.1.8
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/wsdot-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Query WA highway conditions, ferry schedules, vessel locations, toll rates, border waits, and alerts via MCP. STDIO or Streamable HTTP.",
|
|
5
5
|
"mcpName": "io.github.cyanheads/wsdot-mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/wsdot-mcp-server.mcpb",
|
|
36
36
|
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
37
37
|
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
38
|
+
"release:github": "bun run scripts/release-github.ts",
|
|
38
39
|
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
|
|
39
40
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
40
41
|
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"access": "public"
|
|
82
83
|
},
|
|
83
84
|
"dependencies": {
|
|
84
|
-
"@cyanheads/mcp-ts-core": "^0.9.
|
|
85
|
+
"@cyanheads/mcp-ts-core": "^0.9.21",
|
|
85
86
|
"pino-pretty": "^13.1.3",
|
|
86
87
|
"zod": "^4.4.3"
|
|
87
88
|
},
|
|
@@ -92,6 +93,6 @@
|
|
|
92
93
|
"ignore": "^7.0.5",
|
|
93
94
|
"tsc-alias": "^1.8.17",
|
|
94
95
|
"typescript": "^6.0.3",
|
|
95
|
-
"vitest": "^4.1.
|
|
96
|
+
"vitest": "^4.1.8"
|
|
96
97
|
}
|
|
97
98
|
}
|
package/server.json
CHANGED
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"url": "https://wsdot.caseyjhand.com/mcp"
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.6",
|
|
16
16
|
"packages": [
|
|
17
17
|
{
|
|
18
18
|
"registryType": "npm",
|
|
19
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
20
20
|
"identifier": "@cyanheads/wsdot-mcp-server",
|
|
21
21
|
"runtimeHint": "node",
|
|
22
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.6",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{
|
|
25
25
|
"type": "positional",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
55
55
|
"identifier": "@cyanheads/wsdot-mcp-server",
|
|
56
56
|
"runtimeHint": "node",
|
|
57
|
-
"version": "0.1.
|
|
57
|
+
"version": "0.1.6",
|
|
58
58
|
"packageArguments": [
|
|
59
59
|
{
|
|
60
60
|
"type": "positional",
|