@kya-os/mcp-i 0.1.0-alpha.3.9 → 1.2.0
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 +350 -213
- package/dist/149.js +1 -0
- package/dist/189.js +1 -0
- package/dist/261.js +1 -0
- package/dist/28.js +1 -0
- package/dist/295.js +1 -0
- package/dist/460.js +1 -0
- package/dist/570.js +1 -0
- package/dist/634.js +1 -0
- package/dist/647.js +1 -0
- package/dist/67.js +1 -0
- package/dist/739.js +1 -0
- package/dist/742.js +1 -0
- package/dist/904.js +1 -0
- package/dist/938.js +1 -0
- package/dist/auth/api-key.d.ts +16 -0
- package/dist/auth/api-key.js +82 -0
- package/dist/auth/jwt.d.ts +43 -0
- package/dist/auth/jwt.js +51 -0
- package/dist/auth/oauth/factory.d.ts +12 -0
- package/dist/auth/oauth/factory.js +36 -0
- package/dist/auth/oauth/index.d.ts +5 -0
- package/dist/auth/oauth/index.js +27 -0
- package/dist/auth/oauth/providers/proxy-provider.d.ts +13 -0
- package/dist/auth/oauth/providers/proxy-provider.js +159 -0
- package/dist/auth/oauth/router.d.ts +4 -0
- package/dist/auth/oauth/router.js +294 -0
- package/dist/auth/oauth/storage/memory-storage.d.ts +12 -0
- package/dist/auth/oauth/storage/memory-storage.js +40 -0
- package/dist/auth/oauth/types.d.ts +112 -0
- package/dist/cache/__tests__/cloudflare-kv-nonce-cache.test.d.ts +4 -0
- package/dist/cache/__tests__/cloudflare-kv-nonce-cache.test.js +176 -0
- package/dist/cache/__tests__/concurrency.test.d.ts +5 -0
- package/dist/cache/__tests__/concurrency.test.js +300 -0
- package/dist/cache/__tests__/dynamodb-nonce-cache.test.d.ts +4 -0
- package/dist/cache/__tests__/dynamodb-nonce-cache.test.js +176 -0
- package/dist/cache/__tests__/memory-nonce-cache.test.d.ts +4 -0
- package/dist/cache/__tests__/memory-nonce-cache.test.js +132 -0
- package/dist/cache/__tests__/nonce-cache-factory-simple.test.d.ts +4 -0
- package/dist/cache/__tests__/nonce-cache-factory-simple.test.js +133 -0
- package/dist/cache/__tests__/nonce-cache-factory.test.d.ts +4 -0
- package/dist/cache/__tests__/nonce-cache-factory.test.js +252 -0
- package/dist/cache/__tests__/redis-nonce-cache.test.d.ts +4 -0
- package/dist/cache/__tests__/redis-nonce-cache.test.js +95 -0
- package/dist/cache/cloudflare-kv-nonce-cache.d.ts +14 -0
- package/dist/cache/cloudflare-kv-nonce-cache.js +93 -0
- package/dist/cache/dynamodb-nonce-cache.d.ts +15 -0
- package/dist/cache/dynamodb-nonce-cache.js +92 -0
- package/dist/cache/index.d.ts +16 -0
- package/dist/cache/index.js +32 -0
- package/dist/cache/memory-nonce-cache.d.ts +44 -0
- package/dist/cache/memory-nonce-cache.js +105 -0
- package/dist/cache/nonce-cache-factory.d.ts +20 -0
- package/dist/cache/nonce-cache-factory.js +208 -0
- package/dist/cache/redis-nonce-cache.d.ts +14 -0
- package/dist/cache/redis-nonce-cache.js +53 -0
- package/dist/compiler/compiler-context.d.ts +23 -0
- package/dist/compiler/compiler-context.js +24 -0
- package/dist/compiler/config/constants.d.ts +41 -0
- package/dist/compiler/config/constants.js +45 -0
- package/dist/compiler/config/index.d.ts +252 -0
- package/dist/compiler/config/index.js +15 -0
- package/dist/compiler/config/injection.d.ts +26 -0
- package/dist/compiler/config/injection.js +58 -0
- package/dist/compiler/config/schemas/experimental/index.d.ts +91 -0
- package/dist/compiler/config/schemas/experimental/index.js +16 -0
- package/dist/compiler/config/schemas/experimental/oauth.d.ts +74 -0
- package/dist/compiler/config/schemas/experimental/oauth.js +25 -0
- package/dist/compiler/config/schemas/index.d.ts +6 -0
- package/dist/compiler/config/schemas/index.js +17 -0
- package/dist/compiler/config/schemas/paths.d.ts +9 -0
- package/dist/compiler/config/schemas/paths.js +12 -0
- package/dist/compiler/config/schemas/transport/http.d.ts +82 -0
- package/dist/compiler/config/schemas/transport/http.js +33 -0
- package/dist/compiler/config/schemas/transport/stdio.d.ts +9 -0
- package/dist/compiler/config/schemas/transport/stdio.js +15 -0
- package/dist/compiler/config/schemas/webpack.d.ts +3 -0
- package/dist/compiler/config/schemas/webpack.js +15 -0
- package/dist/compiler/config/types.d.ts +1 -0
- package/dist/compiler/config/types.js +2 -0
- package/dist/compiler/config/utils.d.ts +20 -0
- package/dist/compiler/config/utils.js +36 -0
- package/dist/compiler/generate-env-code.d.ts +1 -0
- package/dist/compiler/generate-env-code.js +8 -0
- package/dist/compiler/generate-import-code.d.ts +1 -0
- package/dist/compiler/generate-import-code.js +24 -0
- package/dist/compiler/get-webpack-config/get-entries.d.ts +3 -0
- package/dist/compiler/get-webpack-config/get-entries.js +29 -0
- package/dist/compiler/get-webpack-config/get-externals.d.ts +7 -0
- package/dist/compiler/get-webpack-config/get-externals.js +88 -0
- package/dist/compiler/get-webpack-config/get-injected-variables.d.ts +8 -0
- package/dist/compiler/get-webpack-config/get-injected-variables.js +25 -0
- package/dist/compiler/get-webpack-config/index.d.ts +4 -0
- package/dist/compiler/get-webpack-config/index.js +101 -0
- package/dist/compiler/get-webpack-config/plugins.d.ts +8 -0
- package/dist/compiler/get-webpack-config/plugins.js +132 -0
- package/dist/compiler/get-webpack-config/resolve-tsconfig-paths.d.ts +9 -0
- package/dist/compiler/get-webpack-config/resolve-tsconfig-paths.js +40 -0
- package/dist/compiler/index.d.ts +6 -0
- package/dist/compiler/index.js +194 -0
- package/dist/compiler/on-first-build.d.ts +3 -0
- package/dist/compiler/on-first-build.js +58 -0
- package/dist/compiler/parse-xmcp-config.d.ts +9 -0
- package/dist/compiler/parse-xmcp-config.js +155 -0
- package/dist/compiler/start-http-server.d.ts +1 -0
- package/dist/compiler/start-http-server.js +34 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +38 -0
- package/dist/index.js.LICENSE.txt +49 -0
- package/dist/runtime/__tests__/audit.test.d.ts +4 -0
- package/dist/runtime/__tests__/audit.test.js +328 -0
- package/dist/runtime/__tests__/identity.test.d.ts +4 -0
- package/dist/runtime/__tests__/identity.test.js +164 -0
- package/dist/runtime/__tests__/mcpi-runtime.test.d.ts +4 -0
- package/dist/runtime/__tests__/mcpi-runtime.test.js +372 -0
- package/dist/runtime/__tests__/proof.test.d.ts +4 -0
- package/dist/runtime/__tests__/proof.test.js +302 -0
- package/dist/runtime/__tests__/session.test.d.ts +4 -0
- package/dist/runtime/__tests__/session.test.js +254 -0
- package/dist/runtime/__tests__/well-known.test.d.ts +4 -0
- package/dist/runtime/__tests__/well-known.test.js +312 -0
- package/dist/runtime/adapter-express.js +2 -0
- package/dist/runtime/adapter-express.js.LICENSE.txt +252 -0
- package/dist/runtime/adapter-nextjs.js +2 -0
- package/dist/runtime/adapter-nextjs.js.LICENSE.txt +53 -0
- package/dist/runtime/adapters/express/index.d.ts +2 -0
- package/dist/runtime/adapters/express/index.js +48 -0
- package/dist/runtime/adapters/nextjs/index.d.ts +8 -0
- package/dist/runtime/adapters/nextjs/index.js +18 -0
- package/dist/runtime/audit.d.ts +93 -0
- package/dist/runtime/audit.js +212 -0
- package/dist/runtime/debug.d.ts +118 -0
- package/dist/runtime/debug.js +612 -0
- package/dist/runtime/delegation-hooks.d.ts +85 -0
- package/dist/runtime/delegation-hooks.js +116 -0
- package/dist/runtime/demo.d.ts +71 -0
- package/dist/runtime/demo.js +135 -0
- package/dist/runtime/headers.d.ts +1 -0
- package/dist/runtime/headers.js +9 -0
- package/dist/runtime/http.js +2 -0
- package/dist/runtime/http.js.LICENSE.txt +252 -0
- package/dist/runtime/identity.d.ts +105 -0
- package/dist/runtime/identity.js +232 -0
- package/dist/runtime/index.d.ts +16 -0
- package/dist/runtime/index.js +56 -0
- package/dist/runtime/mcpi-runtime.d.ts +164 -0
- package/dist/runtime/mcpi-runtime.js +352 -0
- package/dist/runtime/proof.d.ts +87 -0
- package/dist/runtime/proof.js +223 -0
- package/dist/runtime/session.d.ts +88 -0
- package/dist/runtime/session.js +216 -0
- package/dist/runtime/stdio.js +2 -0
- package/dist/runtime/stdio.js.LICENSE.txt +1 -0
- package/dist/runtime/templates/home.d.ts +2 -0
- package/dist/runtime/templates/home.js +50 -0
- package/dist/runtime/transports/http/base-streamable-http.d.ts +25 -0
- package/dist/runtime/transports/http/base-streamable-http.js +16 -0
- package/dist/runtime/transports/http/http-context.d.ts +9 -0
- package/dist/runtime/transports/http/http-context.js +8 -0
- package/dist/runtime/transports/http/index.js +55 -0
- package/dist/runtime/transports/http/setup-cors.d.ts +4 -0
- package/dist/runtime/transports/http/setup-cors.js +24 -0
- package/dist/runtime/transports/http/stateless-streamable-http.d.ts +39 -0
- package/dist/runtime/transports/http/stateless-streamable-http.js +331 -0
- package/dist/runtime/transports/stdio/index.d.ts +1 -0
- package/dist/runtime/transports/stdio/index.js +51 -0
- package/dist/runtime/utils/server.d.ts +42 -0
- package/dist/runtime/utils/server.js +39 -0
- package/dist/runtime/utils/tools.d.ts +8 -0
- package/dist/runtime/utils/tools.js +115 -0
- package/dist/runtime/verifier-middleware.d.ts +76 -0
- package/dist/runtime/verifier-middleware.js +322 -0
- package/dist/runtime/well-known.d.ts +151 -0
- package/dist/runtime/well-known.js +258 -0
- package/dist/storage/config.d.ts +28 -0
- package/dist/storage/config.js +79 -0
- package/dist/storage/delegation.d.ts +59 -0
- package/dist/storage/delegation.js +130 -0
- package/dist/storage/merkle-verifier.d.ts +84 -0
- package/dist/storage/merkle-verifier.js +261 -0
- package/dist/test/__tests__/nonce-cache-integration.test.d.ts +1 -0
- package/dist/test/__tests__/nonce-cache-integration.test.js +116 -0
- package/dist/test/__tests__/nonce-cache.test.d.ts +1 -0
- package/dist/test/__tests__/nonce-cache.test.js +122 -0
- package/dist/test/__tests__/runtime-integration.test.d.ts +4 -0
- package/dist/test/__tests__/runtime-integration.test.js +192 -0
- package/dist/test/__tests__/test-infrastructure.test.d.ts +4 -0
- package/dist/test/__tests__/test-infrastructure.test.js +178 -0
- package/dist/test/deterministic-keys.d.ts +31 -0
- package/dist/test/deterministic-keys.js +108 -0
- package/dist/test/examples/test-usage-example.d.ts +140 -0
- package/dist/test/examples/test-usage-example.js +175 -0
- package/dist/test/index.d.ts +11 -0
- package/dist/test/index.js +27 -0
- package/dist/test/local-verification.d.ts +28 -0
- package/dist/test/local-verification.js +342 -0
- package/dist/test/mock-identity-provider.d.ts +96 -0
- package/dist/test/mock-identity-provider.js +243 -0
- package/dist/test/runtime-integration.d.ts +63 -0
- package/dist/test/runtime-integration.js +140 -0
- package/dist/test/test-environment.d.ts +26 -0
- package/dist/test/test-environment.js +50 -0
- package/dist/types/declarations.d.ts +1 -0
- package/dist/types/declarations.js +6 -0
- package/dist/types/middleware.d.ts +2 -0
- package/dist/types/middleware.js +2 -0
- package/dist/types/tool.d.ts +80 -0
- package/dist/types/tool.js +2 -0
- package/dist/utils/cli-icons.d.ts +3 -0
- package/dist/utils/cli-icons.js +7 -0
- package/dist/utils/constants.d.ts +6 -0
- package/dist/utils/constants.js +13 -0
- package/dist/utils/context.d.ts +33 -0
- package/dist/utils/context.js +58 -0
- package/dist/utils/file-watcher.d.ts +19 -0
- package/dist/utils/file-watcher.js +49 -0
- package/dist/utils/fs-utils.d.ts +2 -0
- package/dist/utils/fs-utils.js +22 -0
- package/dist/utils/path-validation.d.ts +3 -0
- package/dist/utils/path-validation.js +56 -0
- package/dist/utils/spawn-process.d.ts +9 -0
- package/dist/utils/spawn-process.js +50 -0
- package/dist/utils/subscribable.d.ts +12 -0
- package/dist/utils/subscribable.js +44 -0
- package/package.json +91 -77
- package/dist/cjs/auto.js +0 -16
- package/dist/cjs/cli-mode.d.ts +0 -16
- package/dist/cjs/cli-mode.js +0 -32
- package/dist/cjs/crypto.d.ts +0 -16
- package/dist/cjs/crypto.js +0 -212
- package/dist/cjs/dev-helper.d.ts +0 -3
- package/dist/cjs/dev-helper.js +0 -46
- package/dist/cjs/encrypted-storage.d.ts +0 -11
- package/dist/cjs/encrypted-storage.js +0 -73
- package/dist/cjs/index.d.ts +0 -56
- package/dist/cjs/index.js +0 -727
- package/dist/cjs/logger.d.ts +0 -32
- package/dist/cjs/logger.js +0 -85
- package/dist/cjs/nextjs.d.ts +0 -10
- package/dist/cjs/nextjs.js +0 -83
- package/dist/cjs/platform-info.d.ts +0 -36
- package/dist/cjs/platform-info.js +0 -274
- package/dist/cjs/polling.d.ts +0 -13
- package/dist/cjs/polling.js +0 -52
- package/dist/cjs/registry/index.d.ts +0 -12
- package/dist/cjs/registry/index.js +0 -56
- package/dist/cjs/registry/knowthat.d.ts +0 -17
- package/dist/cjs/registry/knowthat.js +0 -173
- package/dist/cjs/rotation.d.ts +0 -35
- package/dist/cjs/rotation.js +0 -102
- package/dist/cjs/storage.d.ts +0 -41
- package/dist/cjs/storage.js +0 -163
- package/dist/cjs/transport.d.ts +0 -35
- package/dist/cjs/transport.js +0 -300
- package/dist/cjs/types.d.ts +0 -206
- package/dist/cjs/vercel-adapter.d.ts +0 -8
- package/dist/cjs/vercel-adapter.js +0 -67
- package/dist/esm/auto.d.ts +0 -13
- package/dist/esm/auto.d.ts.map +0 -1
- package/dist/esm/auto.js +0 -30
- package/dist/esm/auto.js.map +0 -1
- package/dist/esm/cli-mode.d.ts +0 -52
- package/dist/esm/cli-mode.d.ts.map +0 -1
- package/dist/esm/cli-mode.js +0 -59
- package/dist/esm/cli-mode.js.map +0 -1
- package/dist/esm/crypto.d.ts +0 -51
- package/dist/esm/crypto.d.ts.map +0 -1
- package/dist/esm/crypto.js +0 -230
- package/dist/esm/crypto.js.map +0 -1
- package/dist/esm/dev-helper.d.ts +0 -15
- package/dist/esm/dev-helper.d.ts.map +0 -1
- package/dist/esm/dev-helper.js +0 -63
- package/dist/esm/dev-helper.js.map +0 -1
- package/dist/esm/encrypted-storage.d.ts +0 -19
- package/dist/esm/encrypted-storage.d.ts.map +0 -1
- package/dist/esm/encrypted-storage.js +0 -48
- package/dist/esm/encrypted-storage.js.map +0 -1
- package/dist/esm/index.d.ts +0 -129
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/index.js +0 -853
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/logger.d.ts +0 -46
- package/dist/esm/logger.d.ts.map +0 -1
- package/dist/esm/logger.js +0 -100
- package/dist/esm/logger.js.map +0 -1
- package/dist/esm/nextjs.d.ts +0 -22
- package/dist/esm/nextjs.d.ts.map +0 -1
- package/dist/esm/nextjs.js +0 -83
- package/dist/esm/nextjs.js.map +0 -1
- package/dist/esm/package.json +0 -1
- package/dist/esm/platform-info.d.ts +0 -74
- package/dist/esm/platform-info.d.ts.map +0 -1
- package/dist/esm/platform-info.js +0 -293
- package/dist/esm/platform-info.js.map +0 -1
- package/dist/esm/polling.d.ts +0 -29
- package/dist/esm/polling.d.ts.map +0 -1
- package/dist/esm/polling.js +0 -76
- package/dist/esm/polling.js.map +0 -1
- package/dist/esm/registry/index.d.ts +0 -43
- package/dist/esm/registry/index.d.ts.map +0 -1
- package/dist/esm/registry/index.js +0 -89
- package/dist/esm/registry/index.js.map +0 -1
- package/dist/esm/registry/knowthat.d.ts +0 -44
- package/dist/esm/registry/knowthat.d.ts.map +0 -1
- package/dist/esm/registry/knowthat.js +0 -220
- package/dist/esm/registry/knowthat.js.map +0 -1
- package/dist/esm/rotation.d.ts +0 -57
- package/dist/esm/rotation.d.ts.map +0 -1
- package/dist/esm/rotation.js +0 -133
- package/dist/esm/rotation.js.map +0 -1
- package/dist/esm/storage.d.ts +0 -65
- package/dist/esm/storage.d.ts.map +0 -1
- package/dist/esm/storage.js +0 -160
- package/dist/esm/storage.js.map +0 -1
- package/dist/esm/transport.d.ts +0 -52
- package/dist/esm/transport.d.ts.map +0 -1
- package/dist/esm/transport.js +0 -340
- package/dist/esm/transport.js.map +0 -1
- package/dist/esm/types.d.ts +0 -293
- package/dist/esm/types.d.ts.map +0 -1
- package/dist/esm/types.js +0 -5
- package/dist/esm/types.js.map +0 -1
- package/dist/esm/vercel-adapter.d.ts +0 -26
- package/dist/esm/vercel-adapter.d.ts.map +0 -1
- package/dist/esm/vercel-adapter.js +0 -80
- package/dist/esm/vercel-adapter.js.map +0 -1
- /package/dist/{cjs → auth/oauth}/types.js +0 -0
- /package/dist/{cjs/auto.d.ts → runtime/transports/http/index.d.ts} +0 -0
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* accepts
|
|
3
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
4
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* body-parser
|
|
10
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
11
|
+
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
|
12
|
+
* MIT Licensed
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*!
|
|
16
|
+
* body-parser
|
|
17
|
+
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
|
18
|
+
* MIT Licensed
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/*!
|
|
22
|
+
* bytes
|
|
23
|
+
* Copyright(c) 2012-2014 TJ Holowaychuk
|
|
24
|
+
* Copyright(c) 2015 Jed Watson
|
|
25
|
+
* MIT Licensed
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
/*!
|
|
29
|
+
* content-disposition
|
|
30
|
+
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
31
|
+
* MIT Licensed
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
/*!
|
|
35
|
+
* content-type
|
|
36
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
37
|
+
* MIT Licensed
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
/*!
|
|
41
|
+
* cookie
|
|
42
|
+
* Copyright(c) 2012-2014 Roman Shtylman
|
|
43
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
44
|
+
* MIT Licensed
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
/*!
|
|
48
|
+
* depd
|
|
49
|
+
* Copyright(c) 2014-2018 Douglas Christopher Wilson
|
|
50
|
+
* MIT Licensed
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
/*!
|
|
54
|
+
* destroy
|
|
55
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
56
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
57
|
+
* MIT Licensed
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
/*!
|
|
61
|
+
* ee-first
|
|
62
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
63
|
+
* MIT Licensed
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
/*!
|
|
67
|
+
* encodeurl
|
|
68
|
+
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
69
|
+
* MIT Licensed
|
|
70
|
+
*/
|
|
71
|
+
|
|
72
|
+
/*!
|
|
73
|
+
* escape-html
|
|
74
|
+
* Copyright(c) 2012-2013 TJ Holowaychuk
|
|
75
|
+
* Copyright(c) 2015 Andreas Lubbe
|
|
76
|
+
* Copyright(c) 2015 Tiancheng "Timothy" Gu
|
|
77
|
+
* MIT Licensed
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
/*!
|
|
81
|
+
* etag
|
|
82
|
+
* Copyright(c) 2014-2016 Douglas Christopher Wilson
|
|
83
|
+
* MIT Licensed
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
/*!
|
|
87
|
+
* express
|
|
88
|
+
* Copyright(c) 2009-2013 TJ Holowaychuk
|
|
89
|
+
* Copyright(c) 2013 Roman Shtylman
|
|
90
|
+
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
|
91
|
+
* MIT Licensed
|
|
92
|
+
*/
|
|
93
|
+
|
|
94
|
+
/*!
|
|
95
|
+
* express
|
|
96
|
+
* Copyright(c) 2009-2013 TJ Holowaychuk
|
|
97
|
+
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
|
98
|
+
* MIT Licensed
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
/*!
|
|
102
|
+
* finalhandler
|
|
103
|
+
* Copyright(c) 2014-2022 Douglas Christopher Wilson
|
|
104
|
+
* MIT Licensed
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
/*!
|
|
108
|
+
* forwarded
|
|
109
|
+
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
110
|
+
* MIT Licensed
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
/*!
|
|
114
|
+
* fresh
|
|
115
|
+
* Copyright(c) 2012 TJ Holowaychuk
|
|
116
|
+
* Copyright(c) 2016-2017 Douglas Christopher Wilson
|
|
117
|
+
* MIT Licensed
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
/*!
|
|
121
|
+
* http-errors
|
|
122
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
123
|
+
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
124
|
+
* MIT Licensed
|
|
125
|
+
*/
|
|
126
|
+
|
|
127
|
+
/*!
|
|
128
|
+
* media-typer
|
|
129
|
+
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
130
|
+
* MIT Licensed
|
|
131
|
+
*/
|
|
132
|
+
|
|
133
|
+
/*!
|
|
134
|
+
* merge-descriptors
|
|
135
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
136
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
137
|
+
* MIT Licensed
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
/*!
|
|
141
|
+
* methods
|
|
142
|
+
* Copyright(c) 2013-2014 TJ Holowaychuk
|
|
143
|
+
* Copyright(c) 2015-2016 Douglas Christopher Wilson
|
|
144
|
+
* MIT Licensed
|
|
145
|
+
*/
|
|
146
|
+
|
|
147
|
+
/*!
|
|
148
|
+
* mime-db
|
|
149
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
150
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
151
|
+
* MIT Licensed
|
|
152
|
+
*/
|
|
153
|
+
|
|
154
|
+
/*!
|
|
155
|
+
* mime-types
|
|
156
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
157
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
158
|
+
* MIT Licensed
|
|
159
|
+
*/
|
|
160
|
+
|
|
161
|
+
/*!
|
|
162
|
+
* negotiator
|
|
163
|
+
* Copyright(c) 2012 Federico Romero
|
|
164
|
+
* Copyright(c) 2012-2014 Isaac Z. Schlueter
|
|
165
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
166
|
+
* MIT Licensed
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
/*!
|
|
170
|
+
* on-finished
|
|
171
|
+
* Copyright(c) 2013 Jonathan Ong
|
|
172
|
+
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
173
|
+
* MIT Licensed
|
|
174
|
+
*/
|
|
175
|
+
|
|
176
|
+
/*!
|
|
177
|
+
* parseurl
|
|
178
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
179
|
+
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
180
|
+
* MIT Licensed
|
|
181
|
+
*/
|
|
182
|
+
|
|
183
|
+
/*!
|
|
184
|
+
* proxy-addr
|
|
185
|
+
* Copyright(c) 2014-2016 Douglas Christopher Wilson
|
|
186
|
+
* MIT Licensed
|
|
187
|
+
*/
|
|
188
|
+
|
|
189
|
+
/*!
|
|
190
|
+
* range-parser
|
|
191
|
+
* Copyright(c) 2012-2014 TJ Holowaychuk
|
|
192
|
+
* Copyright(c) 2015-2016 Douglas Christopher Wilson
|
|
193
|
+
* MIT Licensed
|
|
194
|
+
*/
|
|
195
|
+
|
|
196
|
+
/*!
|
|
197
|
+
* raw-body
|
|
198
|
+
* Copyright(c) 2013-2014 Jonathan Ong
|
|
199
|
+
* Copyright(c) 2014-2022 Douglas Christopher Wilson
|
|
200
|
+
* MIT Licensed
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
/*!
|
|
204
|
+
* send
|
|
205
|
+
* Copyright(c) 2012 TJ Holowaychuk
|
|
206
|
+
* Copyright(c) 2014-2022 Douglas Christopher Wilson
|
|
207
|
+
* MIT Licensed
|
|
208
|
+
*/
|
|
209
|
+
|
|
210
|
+
/*!
|
|
211
|
+
* serve-static
|
|
212
|
+
* Copyright(c) 2010 Sencha Inc.
|
|
213
|
+
* Copyright(c) 2011 TJ Holowaychuk
|
|
214
|
+
* Copyright(c) 2014-2016 Douglas Christopher Wilson
|
|
215
|
+
* MIT Licensed
|
|
216
|
+
*/
|
|
217
|
+
|
|
218
|
+
/*!
|
|
219
|
+
* statuses
|
|
220
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
221
|
+
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
222
|
+
* MIT Licensed
|
|
223
|
+
*/
|
|
224
|
+
|
|
225
|
+
/*!
|
|
226
|
+
* toidentifier
|
|
227
|
+
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
228
|
+
* MIT Licensed
|
|
229
|
+
*/
|
|
230
|
+
|
|
231
|
+
/*!
|
|
232
|
+
* type-is
|
|
233
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
234
|
+
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
|
235
|
+
* MIT Licensed
|
|
236
|
+
*/
|
|
237
|
+
|
|
238
|
+
/*!
|
|
239
|
+
* unpipe
|
|
240
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
241
|
+
* MIT Licensed
|
|
242
|
+
*/
|
|
243
|
+
|
|
244
|
+
/*!
|
|
245
|
+
* vary
|
|
246
|
+
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
247
|
+
* MIT Licensed
|
|
248
|
+
*/
|
|
249
|
+
|
|
250
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
251
|
+
|
|
252
|
+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Identity Management System for XMCP-I Runtime
|
|
3
|
+
*
|
|
4
|
+
* Handles identity loading, generation, and validation for both development
|
|
5
|
+
* and production environments according to requirements 4.1-4.4.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Agent identity structure
|
|
9
|
+
*/
|
|
10
|
+
export interface AgentIdentity {
|
|
11
|
+
did: string;
|
|
12
|
+
keyId: string;
|
|
13
|
+
privateKey: string;
|
|
14
|
+
publicKey: string;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
lastRotated?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Development identity file structure (.mcpi/identity.json)
|
|
20
|
+
*/
|
|
21
|
+
export interface DevIdentityFile {
|
|
22
|
+
version: string;
|
|
23
|
+
did: string;
|
|
24
|
+
keyId: string;
|
|
25
|
+
privateKey: string;
|
|
26
|
+
publicKey: string;
|
|
27
|
+
createdAt: string;
|
|
28
|
+
lastRotated?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Production environment variables
|
|
32
|
+
*/
|
|
33
|
+
export interface ProdEnvironment {
|
|
34
|
+
AGENT_PRIVATE_KEY: string;
|
|
35
|
+
AGENT_KEY_ID: string;
|
|
36
|
+
AGENT_DID: string;
|
|
37
|
+
KYA_VOUCHED_API_KEY: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Identity management configuration
|
|
41
|
+
*/
|
|
42
|
+
export interface IdentityConfig {
|
|
43
|
+
environment: "development" | "production";
|
|
44
|
+
devIdentityPath?: string;
|
|
45
|
+
privacyMode?: boolean;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Error codes for identity management
|
|
49
|
+
*/
|
|
50
|
+
export declare const IDENTITY_ERRORS: {
|
|
51
|
+
readonly ENOIDENTITY: "XMCP_I_ENOIDENTITY";
|
|
52
|
+
readonly ECONFIG: "XMCP_I_ECONFIG";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Identity management class
|
|
56
|
+
*/
|
|
57
|
+
export declare class IdentityManager {
|
|
58
|
+
private config;
|
|
59
|
+
private cachedIdentity?;
|
|
60
|
+
constructor(config?: IdentityConfig);
|
|
61
|
+
/**
|
|
62
|
+
* Load or generate agent identity
|
|
63
|
+
* Requirements: 4.1, 4.2, 4.3, 4.4
|
|
64
|
+
*/
|
|
65
|
+
ensureIdentity(): Promise<AgentIdentity>;
|
|
66
|
+
/**
|
|
67
|
+
* Load development identity from .mcpi/identity.json or generate new one
|
|
68
|
+
* Requirement: 4.1
|
|
69
|
+
*/
|
|
70
|
+
private loadOrGenerateDevIdentity;
|
|
71
|
+
/**
|
|
72
|
+
* Generate new development identity
|
|
73
|
+
* Requirements: 4.1, 4.4
|
|
74
|
+
*/
|
|
75
|
+
private generateDevIdentity;
|
|
76
|
+
/**
|
|
77
|
+
* Save development identity to .mcpi/identity.json
|
|
78
|
+
*/
|
|
79
|
+
private saveDevIdentity;
|
|
80
|
+
/**
|
|
81
|
+
* Load production identity from environment variables
|
|
82
|
+
* Requirements: 4.2, 4.3
|
|
83
|
+
*/
|
|
84
|
+
private loadProdIdentity;
|
|
85
|
+
/**
|
|
86
|
+
* Validate identity configuration
|
|
87
|
+
*/
|
|
88
|
+
validateIdentity(identity: AgentIdentity): Promise<boolean>;
|
|
89
|
+
/**
|
|
90
|
+
* Clear cached identity (useful for testing)
|
|
91
|
+
*/
|
|
92
|
+
clearCache(): void;
|
|
93
|
+
/**
|
|
94
|
+
* Get current configuration
|
|
95
|
+
*/
|
|
96
|
+
getConfig(): IdentityConfig;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Default identity manager instance
|
|
100
|
+
*/
|
|
101
|
+
export declare const defaultIdentityManager: IdentityManager;
|
|
102
|
+
/**
|
|
103
|
+
* Convenience function to ensure identity
|
|
104
|
+
*/
|
|
105
|
+
export declare function ensureIdentity(config?: IdentityConfig): Promise<AgentIdentity>;
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Identity Management System for XMCP-I Runtime
|
|
4
|
+
*
|
|
5
|
+
* Handles identity loading, generation, and validation for both development
|
|
6
|
+
* and production environments according to requirements 4.1-4.4.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.defaultIdentityManager = exports.IdentityManager = exports.IDENTITY_ERRORS = void 0;
|
|
10
|
+
exports.ensureIdentity = ensureIdentity;
|
|
11
|
+
const promises_1 = require("fs/promises");
|
|
12
|
+
const fs_1 = require("fs");
|
|
13
|
+
const path_1 = require("path");
|
|
14
|
+
const jose_1 = require("jose");
|
|
15
|
+
const crypto_1 = require("crypto");
|
|
16
|
+
/**
|
|
17
|
+
* Error codes for identity management
|
|
18
|
+
*/
|
|
19
|
+
exports.IDENTITY_ERRORS = {
|
|
20
|
+
ENOIDENTITY: "XMCP_I_ENOIDENTITY",
|
|
21
|
+
ECONFIG: "XMCP_I_ECONFIG",
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Identity management class
|
|
25
|
+
*/
|
|
26
|
+
class IdentityManager {
|
|
27
|
+
config;
|
|
28
|
+
cachedIdentity;
|
|
29
|
+
constructor(config = { environment: "development" }) {
|
|
30
|
+
this.config = {
|
|
31
|
+
privacyMode: false, // Single public DID default
|
|
32
|
+
devIdentityPath: ".mcpi/identity.json",
|
|
33
|
+
...config,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Load or generate agent identity
|
|
38
|
+
* Requirements: 4.1, 4.2, 4.3, 4.4
|
|
39
|
+
*/
|
|
40
|
+
async ensureIdentity() {
|
|
41
|
+
if (this.cachedIdentity) {
|
|
42
|
+
return this.cachedIdentity;
|
|
43
|
+
}
|
|
44
|
+
if (this.config.environment === "development") {
|
|
45
|
+
this.cachedIdentity = await this.loadOrGenerateDevIdentity();
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
this.cachedIdentity = await this.loadProdIdentity();
|
|
49
|
+
}
|
|
50
|
+
return this.cachedIdentity;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Load development identity from .mcpi/identity.json or generate new one
|
|
54
|
+
* Requirement: 4.1
|
|
55
|
+
*/
|
|
56
|
+
async loadOrGenerateDevIdentity() {
|
|
57
|
+
const identityPath = this.config.devIdentityPath;
|
|
58
|
+
try {
|
|
59
|
+
if ((0, fs_1.existsSync)(identityPath)) {
|
|
60
|
+
const content = await (0, promises_1.readFile)(identityPath, "utf-8");
|
|
61
|
+
const devIdentity = JSON.parse(content);
|
|
62
|
+
return {
|
|
63
|
+
did: devIdentity.did,
|
|
64
|
+
keyId: devIdentity.keyId,
|
|
65
|
+
privateKey: devIdentity.privateKey,
|
|
66
|
+
publicKey: devIdentity.publicKey,
|
|
67
|
+
createdAt: devIdentity.createdAt,
|
|
68
|
+
lastRotated: devIdentity.lastRotated,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
catch {
|
|
73
|
+
// If file exists but is corrupted, we'll regenerate
|
|
74
|
+
console.warn(`Warning: Could not load identity from ${identityPath}, generating new one`);
|
|
75
|
+
}
|
|
76
|
+
// Generate new identity
|
|
77
|
+
return await this.generateDevIdentity();
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Generate new development identity
|
|
81
|
+
* Requirements: 4.1, 4.4
|
|
82
|
+
*/
|
|
83
|
+
async generateDevIdentity() {
|
|
84
|
+
// Generate Ed25519 keypair
|
|
85
|
+
const keyPair = await (0, jose_1.generateKeyPair)("EdDSA", { crv: "Ed25519" });
|
|
86
|
+
// Export keys to JWK format
|
|
87
|
+
const privateKeyJwk = await (0, jose_1.exportJWK)(keyPair.privateKey);
|
|
88
|
+
if (!privateKeyJwk.x || !privateKeyJwk.d) {
|
|
89
|
+
throw new Error("Failed to generate Ed25519 keypair");
|
|
90
|
+
}
|
|
91
|
+
const privateKey = Buffer.from(privateKeyJwk.d, "base64url").toString("base64");
|
|
92
|
+
const publicKey = Buffer.from(privateKeyJwk.x, "base64url").toString("base64");
|
|
93
|
+
// Generate key ID (first 8 chars of public key hash)
|
|
94
|
+
const keyId = `key-${(0, crypto_1.createHash)("sha256").update(publicKey).digest("hex").substring(0, 8)}`;
|
|
95
|
+
// Generate DID (for dev, use localhost)
|
|
96
|
+
const did = `did:web:localhost:3000:agents:${keyId}`;
|
|
97
|
+
const now = new Date().toISOString();
|
|
98
|
+
const identity = {
|
|
99
|
+
did,
|
|
100
|
+
keyId,
|
|
101
|
+
privateKey,
|
|
102
|
+
publicKey,
|
|
103
|
+
createdAt: now,
|
|
104
|
+
};
|
|
105
|
+
// Save to file
|
|
106
|
+
await this.saveDevIdentity(identity);
|
|
107
|
+
return identity;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Save development identity to .mcpi/identity.json
|
|
111
|
+
*/
|
|
112
|
+
async saveDevIdentity(identity) {
|
|
113
|
+
const identityPath = this.config.devIdentityPath;
|
|
114
|
+
// Ensure directory exists
|
|
115
|
+
await (0, promises_1.mkdir)((0, path_1.dirname)(identityPath), { recursive: true });
|
|
116
|
+
const devIdentity = {
|
|
117
|
+
version: "1.0",
|
|
118
|
+
did: identity.did,
|
|
119
|
+
keyId: identity.keyId,
|
|
120
|
+
privateKey: identity.privateKey,
|
|
121
|
+
publicKey: identity.publicKey,
|
|
122
|
+
createdAt: identity.createdAt,
|
|
123
|
+
lastRotated: identity.lastRotated,
|
|
124
|
+
};
|
|
125
|
+
await (0, promises_1.writeFile)(identityPath, JSON.stringify(devIdentity, null, 2), {
|
|
126
|
+
mode: 0o600,
|
|
127
|
+
});
|
|
128
|
+
console.log(`✅ Identity saved to ${identityPath}`);
|
|
129
|
+
console.log(` DID: ${identity.did}`);
|
|
130
|
+
console.log(` Key ID: ${identity.keyId}`);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Load production identity from environment variables
|
|
134
|
+
* Requirements: 4.2, 4.3
|
|
135
|
+
*/
|
|
136
|
+
async loadProdIdentity() {
|
|
137
|
+
const requiredEnvVars = [
|
|
138
|
+
"AGENT_PRIVATE_KEY",
|
|
139
|
+
"AGENT_KEY_ID",
|
|
140
|
+
"AGENT_DID",
|
|
141
|
+
"KYA_VOUCHED_API_KEY",
|
|
142
|
+
];
|
|
143
|
+
const missing = [];
|
|
144
|
+
const env = {};
|
|
145
|
+
for (const varName of requiredEnvVars) {
|
|
146
|
+
const value = process.env[varName];
|
|
147
|
+
if (!value) {
|
|
148
|
+
missing.push(varName);
|
|
149
|
+
}
|
|
150
|
+
else {
|
|
151
|
+
env[varName] = value;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
if (missing.length > 0) {
|
|
155
|
+
const error = new Error(`Missing required environment variables for production identity: ${missing.join(", ")}\n` +
|
|
156
|
+
"Required variables:\n" +
|
|
157
|
+
" AGENT_PRIVATE_KEY - Base64-encoded Ed25519 private key\n" +
|
|
158
|
+
" AGENT_KEY_ID - Key identifier\n" +
|
|
159
|
+
" AGENT_DID - Agent DID\n" +
|
|
160
|
+
" KYA_VOUCHED_API_KEY - Know-That-AI API key");
|
|
161
|
+
error.code = exports.IDENTITY_ERRORS.ENOIDENTITY;
|
|
162
|
+
throw error;
|
|
163
|
+
}
|
|
164
|
+
// For production, we expect the private key to be base64-encoded
|
|
165
|
+
// We'll derive a placeholder public key since we don't need it for signing
|
|
166
|
+
// In a real implementation, the public key would be derived properly
|
|
167
|
+
const privateKeyBuffer = Buffer.from(env.AGENT_PRIVATE_KEY, "base64");
|
|
168
|
+
// Generate a deterministic public key placeholder from the private key
|
|
169
|
+
const publicKey = (0, crypto_1.createHash)("sha256")
|
|
170
|
+
.update(privateKeyBuffer)
|
|
171
|
+
.digest("base64");
|
|
172
|
+
return {
|
|
173
|
+
did: env.AGENT_DID,
|
|
174
|
+
keyId: env.AGENT_KEY_ID,
|
|
175
|
+
privateKey: env.AGENT_PRIVATE_KEY,
|
|
176
|
+
publicKey,
|
|
177
|
+
createdAt: new Date().toISOString(), // We don't have creation time in prod
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* Validate identity configuration
|
|
182
|
+
*/
|
|
183
|
+
async validateIdentity(identity) {
|
|
184
|
+
try {
|
|
185
|
+
// Basic validation
|
|
186
|
+
if (!identity.did ||
|
|
187
|
+
!identity.keyId ||
|
|
188
|
+
!identity.privateKey ||
|
|
189
|
+
!identity.publicKey) {
|
|
190
|
+
return false;
|
|
191
|
+
}
|
|
192
|
+
// Validate DID format
|
|
193
|
+
if (!identity.did.startsWith("did:")) {
|
|
194
|
+
return false;
|
|
195
|
+
}
|
|
196
|
+
// Validate key format (base64)
|
|
197
|
+
Buffer.from(identity.privateKey, "base64");
|
|
198
|
+
Buffer.from(identity.publicKey, "base64");
|
|
199
|
+
return true;
|
|
200
|
+
}
|
|
201
|
+
catch {
|
|
202
|
+
return false;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* Clear cached identity (useful for testing)
|
|
207
|
+
*/
|
|
208
|
+
clearCache() {
|
|
209
|
+
this.cachedIdentity = undefined;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Get current configuration
|
|
213
|
+
*/
|
|
214
|
+
getConfig() {
|
|
215
|
+
return { ...this.config };
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
exports.IdentityManager = IdentityManager;
|
|
219
|
+
/**
|
|
220
|
+
* Default identity manager instance
|
|
221
|
+
*/
|
|
222
|
+
exports.defaultIdentityManager = new IdentityManager();
|
|
223
|
+
/**
|
|
224
|
+
* Convenience function to ensure identity
|
|
225
|
+
*/
|
|
226
|
+
async function ensureIdentity(config) {
|
|
227
|
+
if (config) {
|
|
228
|
+
const manager = new IdentityManager(config);
|
|
229
|
+
return manager.ensureIdentity();
|
|
230
|
+
}
|
|
231
|
+
return exports.defaultIdentityManager.ensureIdentity();
|
|
232
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* XMCP-I Runtime - Main Exports
|
|
3
|
+
*
|
|
4
|
+
* Identity-aware MCP runtime with proof generation, session management,
|
|
5
|
+
* audit logging, and well-known endpoints.
|
|
6
|
+
*/
|
|
7
|
+
export { MCPIRuntime, createMCPIRuntime, RuntimeFactory, RUNTIME_ERRORS, type MCPIRuntimeConfig, type RuntimeEnvironment, } from "./mcpi-runtime";
|
|
8
|
+
export { IdentityManager, defaultIdentityManager, ensureIdentity, IDENTITY_ERRORS, type AgentIdentity, type DevIdentityFile, type ProdEnvironment, type IdentityConfig, } from "./identity";
|
|
9
|
+
export { SessionManager, defaultSessionManager, createHandshakeRequest, validateHandshakeFormat, type SessionConfig, type HandshakeResult, } from "./session";
|
|
10
|
+
export { ProofGenerator, createProofResponse, extractCanonicalData, type ToolRequest, type ToolResponse, type ProofOptions, } from "./proof";
|
|
11
|
+
export { AuditLogger, defaultAuditLogger, logKeyRotationAudit, parseAuditLine, validateAuditRecord, type AuditConfig, type AuditContext, type KeyRotationAuditContext, } from "./audit";
|
|
12
|
+
export { WellKnownManager, createWellKnownHandler, validateDIDDocument, validateAgentDocument, extractDIDFromPath, type DIDDocument, type VerificationMethod, type ServiceEndpoint, type AgentDocument, type WellKnownConfig, type WellKnownHandler, } from "./well-known";
|
|
13
|
+
export { DebugManager, createDebugEndpoint, type DebugVerificationResult, type DebugPageData, } from "./debug";
|
|
14
|
+
export { DemoManager, createDemoManager, DemoConsole, formatVerifyLink, type DemoConfig, } from "./demo";
|
|
15
|
+
export type { HandshakeRequest, SessionContext, NonceCache, NonceCacheEntry, NonceCacheConfig, } from "@kya-os/contracts/handshake";
|
|
16
|
+
export type { ProofMeta, DetachedProof, CanonicalHashes, AuditRecord, } from "@kya-os/contracts/proof";
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* XMCP-I Runtime - Main Exports
|
|
4
|
+
*
|
|
5
|
+
* Identity-aware MCP runtime with proof generation, session management,
|
|
6
|
+
* audit logging, and well-known endpoints.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.formatVerifyLink = exports.DemoConsole = exports.createDemoManager = exports.DemoManager = exports.createDebugEndpoint = exports.DebugManager = exports.extractDIDFromPath = exports.validateAgentDocument = exports.validateDIDDocument = exports.createWellKnownHandler = exports.WellKnownManager = exports.validateAuditRecord = exports.parseAuditLine = exports.logKeyRotationAudit = exports.defaultAuditLogger = exports.AuditLogger = exports.extractCanonicalData = exports.createProofResponse = exports.ProofGenerator = exports.validateHandshakeFormat = exports.createHandshakeRequest = exports.defaultSessionManager = exports.SessionManager = exports.IDENTITY_ERRORS = exports.ensureIdentity = exports.defaultIdentityManager = exports.IdentityManager = exports.RUNTIME_ERRORS = exports.RuntimeFactory = exports.createMCPIRuntime = exports.MCPIRuntime = void 0;
|
|
10
|
+
// Main runtime
|
|
11
|
+
var mcpi_runtime_1 = require("./mcpi-runtime");
|
|
12
|
+
Object.defineProperty(exports, "MCPIRuntime", { enumerable: true, get: function () { return mcpi_runtime_1.MCPIRuntime; } });
|
|
13
|
+
Object.defineProperty(exports, "createMCPIRuntime", { enumerable: true, get: function () { return mcpi_runtime_1.createMCPIRuntime; } });
|
|
14
|
+
Object.defineProperty(exports, "RuntimeFactory", { enumerable: true, get: function () { return mcpi_runtime_1.RuntimeFactory; } });
|
|
15
|
+
Object.defineProperty(exports, "RUNTIME_ERRORS", { enumerable: true, get: function () { return mcpi_runtime_1.RUNTIME_ERRORS; } });
|
|
16
|
+
// Identity management
|
|
17
|
+
var identity_1 = require("./identity");
|
|
18
|
+
Object.defineProperty(exports, "IdentityManager", { enumerable: true, get: function () { return identity_1.IdentityManager; } });
|
|
19
|
+
Object.defineProperty(exports, "defaultIdentityManager", { enumerable: true, get: function () { return identity_1.defaultIdentityManager; } });
|
|
20
|
+
Object.defineProperty(exports, "ensureIdentity", { enumerable: true, get: function () { return identity_1.ensureIdentity; } });
|
|
21
|
+
Object.defineProperty(exports, "IDENTITY_ERRORS", { enumerable: true, get: function () { return identity_1.IDENTITY_ERRORS; } });
|
|
22
|
+
// Session and handshake management
|
|
23
|
+
var session_1 = require("./session");
|
|
24
|
+
Object.defineProperty(exports, "SessionManager", { enumerable: true, get: function () { return session_1.SessionManager; } });
|
|
25
|
+
Object.defineProperty(exports, "defaultSessionManager", { enumerable: true, get: function () { return session_1.defaultSessionManager; } });
|
|
26
|
+
Object.defineProperty(exports, "createHandshakeRequest", { enumerable: true, get: function () { return session_1.createHandshakeRequest; } });
|
|
27
|
+
Object.defineProperty(exports, "validateHandshakeFormat", { enumerable: true, get: function () { return session_1.validateHandshakeFormat; } });
|
|
28
|
+
// Proof generation
|
|
29
|
+
var proof_1 = require("./proof");
|
|
30
|
+
Object.defineProperty(exports, "ProofGenerator", { enumerable: true, get: function () { return proof_1.ProofGenerator; } });
|
|
31
|
+
Object.defineProperty(exports, "createProofResponse", { enumerable: true, get: function () { return proof_1.createProofResponse; } });
|
|
32
|
+
Object.defineProperty(exports, "extractCanonicalData", { enumerable: true, get: function () { return proof_1.extractCanonicalData; } });
|
|
33
|
+
// Audit logging
|
|
34
|
+
var audit_1 = require("./audit");
|
|
35
|
+
Object.defineProperty(exports, "AuditLogger", { enumerable: true, get: function () { return audit_1.AuditLogger; } });
|
|
36
|
+
Object.defineProperty(exports, "defaultAuditLogger", { enumerable: true, get: function () { return audit_1.defaultAuditLogger; } });
|
|
37
|
+
Object.defineProperty(exports, "logKeyRotationAudit", { enumerable: true, get: function () { return audit_1.logKeyRotationAudit; } });
|
|
38
|
+
Object.defineProperty(exports, "parseAuditLine", { enumerable: true, get: function () { return audit_1.parseAuditLine; } });
|
|
39
|
+
Object.defineProperty(exports, "validateAuditRecord", { enumerable: true, get: function () { return audit_1.validateAuditRecord; } });
|
|
40
|
+
// Well-known endpoints
|
|
41
|
+
var well_known_1 = require("./well-known");
|
|
42
|
+
Object.defineProperty(exports, "WellKnownManager", { enumerable: true, get: function () { return well_known_1.WellKnownManager; } });
|
|
43
|
+
Object.defineProperty(exports, "createWellKnownHandler", { enumerable: true, get: function () { return well_known_1.createWellKnownHandler; } });
|
|
44
|
+
Object.defineProperty(exports, "validateDIDDocument", { enumerable: true, get: function () { return well_known_1.validateDIDDocument; } });
|
|
45
|
+
Object.defineProperty(exports, "validateAgentDocument", { enumerable: true, get: function () { return well_known_1.validateAgentDocument; } });
|
|
46
|
+
Object.defineProperty(exports, "extractDIDFromPath", { enumerable: true, get: function () { return well_known_1.extractDIDFromPath; } });
|
|
47
|
+
// Debug tools (development only)
|
|
48
|
+
var debug_1 = require("./debug");
|
|
49
|
+
Object.defineProperty(exports, "DebugManager", { enumerable: true, get: function () { return debug_1.DebugManager; } });
|
|
50
|
+
Object.defineProperty(exports, "createDebugEndpoint", { enumerable: true, get: function () { return debug_1.createDebugEndpoint; } });
|
|
51
|
+
// Demo features (opt-in)
|
|
52
|
+
var demo_1 = require("./demo");
|
|
53
|
+
Object.defineProperty(exports, "DemoManager", { enumerable: true, get: function () { return demo_1.DemoManager; } });
|
|
54
|
+
Object.defineProperty(exports, "createDemoManager", { enumerable: true, get: function () { return demo_1.createDemoManager; } });
|
|
55
|
+
Object.defineProperty(exports, "DemoConsole", { enumerable: true, get: function () { return demo_1.DemoConsole; } });
|
|
56
|
+
Object.defineProperty(exports, "formatVerifyLink", { enumerable: true, get: function () { return demo_1.formatVerifyLink; } });
|