@kaminari-ad/mcp 0.5.0 → 0.5.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/CHANGELOG.md +21 -0
- package/dist/bin.js +3 -3
- package/dist/{chunk-6FT6HKOB.js → chunk-3CY2WEZF.js} +3 -3
- package/dist/{chunk-6FT6HKOB.js.map → chunk-3CY2WEZF.js.map} +1 -1
- package/dist/{chunk-PG5IDZWQ.js → chunk-SQVFFWOB.js} +3 -3
- package/dist/{chunk-PG5IDZWQ.js.map → chunk-SQVFFWOB.js.map} +1 -1
- package/dist/{http-bootstrap-N64P6LER.js → http-bootstrap-X2Y2VGBO.js} +9 -4
- package/dist/http-bootstrap-X2Y2VGBO.js.map +1 -0
- package/dist/{stdio-bootstrap-IJKGS6IL.js → stdio-bootstrap-JBLNH46R.js} +4 -4
- package/dist/{stdio-bootstrap-IJKGS6IL.js.map → stdio-bootstrap-JBLNH46R.js.map} +1 -1
- package/package.json +2 -2
- package/dist/http-bootstrap-N64P6LER.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.2] - 2026-06-20
|
|
11
|
+
|
|
12
|
+
### Security
|
|
13
|
+
|
|
14
|
+
- **Bump `undici` 8.3.0 to 8.5.0** to clear the npm-audit gate after the
|
|
15
|
+
upstream disclosure of seven high-severity advisories (TLS validation
|
|
16
|
+
bypass, shared-cache disclosure, Set-Cookie SameSite downgrade, header
|
|
17
|
+
injection, WebSocket DoS). `undici` is a direct dependency.
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- **Security response headers on the HTTP transport.** Every HTTP
|
|
22
|
+
response now carries `Strict-Transport-Security`,
|
|
23
|
+
`X-Content-Type-Options: nosniff`, `X-Frame-Options: DENY`,
|
|
24
|
+
`Referrer-Policy: no-referrer`, and `Permissions-Policy`. These moved
|
|
25
|
+
off the upstream edge proxy so `mcp.kaminari.ad` is self-contained. No
|
|
26
|
+
CORS and no org-identifying headers are added (tenant-isolation rules).
|
|
27
|
+
|
|
28
|
+
> `0.5.1` was tagged prematurely (before the version bump) and is
|
|
29
|
+
> superseded by `0.5.2`; it was never published to npm.
|
|
30
|
+
|
|
10
31
|
## [0.5.0] - 2026-06-17
|
|
11
32
|
|
|
12
33
|
### Added
|
package/dist/bin.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { NAME, VERSION, err, ok } from './chunk-
|
|
2
|
+
import { NAME, VERSION, err, ok } from './chunk-SQVFFWOB.js';
|
|
3
3
|
import process from 'process';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
@@ -162,10 +162,10 @@ async function main() {
|
|
|
162
162
|
}
|
|
163
163
|
const config = configResult.value;
|
|
164
164
|
if (config.transport === "stdio") {
|
|
165
|
-
const { bootstrapStdio } = await import('./stdio-bootstrap-
|
|
165
|
+
const { bootstrapStdio } = await import('./stdio-bootstrap-JBLNH46R.js');
|
|
166
166
|
return bootstrapStdio(config);
|
|
167
167
|
}
|
|
168
|
-
const { bootstrapHttp } = await import('./http-bootstrap-
|
|
168
|
+
const { bootstrapHttp } = await import('./http-bootstrap-X2Y2VGBO.js');
|
|
169
169
|
return bootstrapHttp(config);
|
|
170
170
|
}
|
|
171
171
|
main().then(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { err, ok } from './chunk-
|
|
2
|
+
import { err, ok } from './chunk-SQVFFWOB.js';
|
|
3
3
|
import { createHash, randomUUID } from 'crypto';
|
|
4
4
|
import createClient from 'openapi-fetch';
|
|
5
5
|
import { fetch } from 'undici';
|
|
@@ -5376,5 +5376,5 @@ function formatToolError(error) {
|
|
|
5376
5376
|
}
|
|
5377
5377
|
|
|
5378
5378
|
export { BearerToken, SERVER_INSTRUCTIONS, createHttpApiGateway, createPinoLogger, declareEmptyResourcesAndPrompts, newRequestId, wireToolsIntoMcpServer };
|
|
5379
|
-
//# sourceMappingURL=chunk-
|
|
5380
|
-
//# sourceMappingURL=chunk-
|
|
5379
|
+
//# sourceMappingURL=chunk-3CY2WEZF.js.map
|
|
5380
|
+
//# sourceMappingURL=chunk-3CY2WEZF.js.map
|