@squawk/mcp 0.12.0 → 0.12.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 +14 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ version explicitly in the client config:
|
|
|
98
98
|
"mcpServers": {
|
|
99
99
|
"squawk": {
|
|
100
100
|
"command": "npx",
|
|
101
|
-
"args": ["-y", "@squawk/mcp@0.12.
|
|
101
|
+
"args": ["-y", "@squawk/mcp@0.12.1"]
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -144,14 +144,17 @@ rest of the server keeps working normally. If you do not need aircraft lookups,
|
|
|
144
144
|
is required.
|
|
145
145
|
|
|
146
146
|
To enable lookups, install the data package alongside `@squawk/mcp`. Through `npx` the cleanest
|
|
147
|
-
option is the `-p` flag, which adds extra packages to the temporary install npx builds
|
|
147
|
+
option is the `-p` flag, which adds extra packages to the temporary install npx builds. Once more
|
|
148
|
+
than one package is involved, npx no longer infers which one to run, so give it each package
|
|
149
|
+
behind its own `-p` and name the actual binary (`squawk-mcp`, not the package name) as the
|
|
150
|
+
trailing command:
|
|
148
151
|
|
|
149
152
|
```json
|
|
150
153
|
{
|
|
151
154
|
"mcpServers": {
|
|
152
155
|
"squawk": {
|
|
153
156
|
"command": "npx",
|
|
154
|
-
"args": ["-y", "-p", "@squawk/icao-registry-data", "@squawk/mcp"]
|
|
157
|
+
"args": ["-y", "-p", "@squawk/icao-registry-data", "-p", "@squawk/mcp", "squawk-mcp"]
|
|
155
158
|
}
|
|
156
159
|
}
|
|
157
160
|
}
|
|
@@ -164,7 +167,14 @@ Pinning works the same way:
|
|
|
164
167
|
"mcpServers": {
|
|
165
168
|
"squawk": {
|
|
166
169
|
"command": "npx",
|
|
167
|
-
"args": [
|
|
170
|
+
"args": [
|
|
171
|
+
"-y",
|
|
172
|
+
"-p",
|
|
173
|
+
"@squawk/icao-registry-data@0.8.12",
|
|
174
|
+
"-p",
|
|
175
|
+
"@squawk/mcp@0.12.1",
|
|
176
|
+
"squawk-mcp"
|
|
177
|
+
]
|
|
168
178
|
}
|
|
169
179
|
}
|
|
170
180
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squawk/mcp",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Model Context Protocol server exposing squawk's aviation libraries as tools for LLM clients",
|
|
6
6
|
"author": "Neil Cochran",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@squawk/procedures": "^0.7.1",
|
|
61
61
|
"@squawk/types": "^0.9.0",
|
|
62
62
|
"@squawk/weather": "^0.6.1",
|
|
63
|
-
"zod": "^4.6.
|
|
63
|
+
"zod": "^4.6.5"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"@squawk/icao-registry-data": "^0.8.12"
|