@cyanheads/wsdot-mcp-server 0.1.2 → 0.1.3
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 -1
- package/changelog/0.1.x/0.1.3.md +11 -0
- package/package.json +1 -1
- package/server.json +9 -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
|
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
|
|
18
18
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
19
19
|
|
|
20
|
+
**Public Hosted Server:** [https://wsdot.caseyjhand.com/mcp](https://wsdot.caseyjhand.com/mcp)
|
|
21
|
+
|
|
20
22
|
</div>
|
|
21
23
|
|
|
22
24
|
---
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Add hosted server endpoint metadata — remotes block in server.json, public URL in README"
|
|
3
|
+
breaking: false
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 0.1.3 — 2026-05-23
|
|
7
|
+
|
|
8
|
+
## Added
|
|
9
|
+
|
|
10
|
+
- **`remotes` block in `server.json`** — declares the public hosted endpoint (`https://wsdot.caseyjhand.com/mcp`, `streamable-http`) for MCP Registry discovery
|
|
11
|
+
- **Public Hosted Server link in README** — surfaces the hosted endpoint URL alongside install badges
|
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.3",
|
|
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",
|
package/server.json
CHANGED
|
@@ -6,14 +6,20 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/wsdot-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
9
|
+
"remotes": [
|
|
10
|
+
{
|
|
11
|
+
"type": "streamable-http",
|
|
12
|
+
"url": "https://wsdot.caseyjhand.com/mcp"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"version": "0.1.3",
|
|
10
16
|
"packages": [
|
|
11
17
|
{
|
|
12
18
|
"registryType": "npm",
|
|
13
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
20
|
"identifier": "@cyanheads/wsdot-mcp-server",
|
|
15
21
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.3",
|
|
17
23
|
"packageArguments": [
|
|
18
24
|
{
|
|
19
25
|
"type": "positional",
|
|
@@ -48,7 +54,7 @@
|
|
|
48
54
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
49
55
|
"identifier": "@cyanheads/wsdot-mcp-server",
|
|
50
56
|
"runtimeHint": "node",
|
|
51
|
-
"version": "0.1.
|
|
57
|
+
"version": "0.1.3",
|
|
52
58
|
"packageArguments": [
|
|
53
59
|
{
|
|
54
60
|
"type": "positional",
|