@squawk/mcp 0.9.0 → 0.9.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/README.md +2 -2
- package/dist/bin.js +0 -0
- package/dist/tools/flightplan.d.ts +2 -2
- package/dist/tools/flightplan.js +2 -2
- package/package.json +5 -3
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.9.
|
|
101
|
+
"args": ["-y", "@squawk/mcp@0.9.6"]
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -164,7 +164,7 @@ Pinning works the same way:
|
|
|
164
164
|
"mcpServers": {
|
|
165
165
|
"squawk": {
|
|
166
166
|
"command": "npx",
|
|
167
|
-
"args": ["-y", "-p", "@squawk/icao-registry-data@0.8.
|
|
167
|
+
"args": ["-y", "-p", "@squawk/icao-registry-data@0.8.10", "@squawk/mcp@0.9.6"]
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
}
|
package/dist/bin.js
CHANGED
|
File without changes
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @packageDocumentation
|
|
3
3
|
* MCP tool module wrapping `@squawk/flightplan` route-string parsing and
|
|
4
4
|
* great-circle distance computation. The flightplan resolver composes the
|
|
5
|
-
* shared airport, navaid, fix, airway, and procedure resolvers from
|
|
6
|
-
*
|
|
5
|
+
* shared airport, navaid, fix, airway, and procedure resolvers from the
|
|
6
|
+
* package's `resolvers` module.
|
|
7
7
|
*/
|
|
8
8
|
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
9
9
|
/**
|
package/dist/tools/flightplan.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @packageDocumentation
|
|
3
3
|
* MCP tool module wrapping `@squawk/flightplan` route-string parsing and
|
|
4
4
|
* great-circle distance computation. The flightplan resolver composes the
|
|
5
|
-
* shared airport, navaid, fix, airway, and procedure resolvers from
|
|
6
|
-
*
|
|
5
|
+
* shared airport, navaid, fix, airway, and procedure resolvers from the
|
|
6
|
+
* package's `resolvers` module.
|
|
7
7
|
*/
|
|
8
8
|
import { z } from 'zod';
|
|
9
9
|
import { computeRouteDistance, createFlightplanResolver } from '@squawk/flightplan';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squawk/mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.6",
|
|
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",
|
|
@@ -35,7 +35,9 @@
|
|
|
35
35
|
"test": "vitest run",
|
|
36
36
|
"test:coverage": "vitest run --coverage",
|
|
37
37
|
"lint": "tsc --noEmit && eslint src",
|
|
38
|
-
"lint:pack": "publint && attw --pack . --profile esm-only"
|
|
38
|
+
"lint:pack": "publint && attw --pack . --profile esm-only",
|
|
39
|
+
"api:check": "api-extractor run --verbose",
|
|
40
|
+
"api:report": "api-extractor run --local --verbose"
|
|
39
41
|
},
|
|
40
42
|
"dependencies": {
|
|
41
43
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
@@ -70,7 +72,7 @@
|
|
|
70
72
|
},
|
|
71
73
|
"devDependencies": {
|
|
72
74
|
"@squawk/icao-registry-data": "^0.8.3",
|
|
73
|
-
"@types/node": "^25.
|
|
75
|
+
"@types/node": "^25.9.3"
|
|
74
76
|
},
|
|
75
77
|
"keywords": [
|
|
76
78
|
"aviation",
|