@aws/agentcore 0.3.0-preview.1.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.
Files changed (213) hide show
  1. package/LICENSE +175 -0
  2. package/README.md +147 -0
  3. package/dist/assets/README.md +79 -0
  4. package/dist/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap +2862 -0
  5. package/dist/assets/__tests__/assets.snapshot.test.ts +139 -0
  6. package/dist/assets/agents/AGENTS.md +102 -0
  7. package/dist/assets/cdk/.prettierrc +8 -0
  8. package/dist/assets/cdk/README.md +14 -0
  9. package/dist/assets/cdk/bin/cdk.ts +50 -0
  10. package/dist/assets/cdk/cdk.json +88 -0
  11. package/dist/assets/cdk/gitignore.template +9 -0
  12. package/dist/assets/cdk/jest.config.js +9 -0
  13. package/dist/assets/cdk/lib/cdk-stack.ts +38 -0
  14. package/dist/assets/cdk/npmignore.template +6 -0
  15. package/dist/assets/cdk/package.json +30 -0
  16. package/dist/assets/cdk/test/cdk.test.ts +16 -0
  17. package/dist/assets/cdk/tsconfig.json +28 -0
  18. package/dist/assets/mcp/python/README.md +27 -0
  19. package/dist/assets/mcp/python/pyproject.toml +22 -0
  20. package/dist/assets/mcp/python/server.py +117 -0
  21. package/dist/assets/mcp/python-lambda/README.md +22 -0
  22. package/dist/assets/mcp/python-lambda/handler.py +144 -0
  23. package/dist/assets/mcp/python-lambda/pyproject.toml +15 -0
  24. package/dist/assets/python/autogen/base/README.md +41 -0
  25. package/dist/assets/python/autogen/base/gitignore.template +40 -0
  26. package/dist/assets/python/autogen/base/main.py +52 -0
  27. package/dist/assets/python/autogen/base/mcp_client/client.py +18 -0
  28. package/dist/assets/python/autogen/base/model/load.py +136 -0
  29. package/dist/assets/python/autogen/base/pyproject.toml +35 -0
  30. package/dist/assets/python/crewai/base/README.md +41 -0
  31. package/dist/assets/python/crewai/base/gitignore.template +40 -0
  32. package/dist/assets/python/crewai/base/main.py +55 -0
  33. package/dist/assets/python/crewai/base/model/load.py +133 -0
  34. package/dist/assets/python/crewai/base/pyproject.toml +32 -0
  35. package/dist/assets/python/googleadk/base/README.md +39 -0
  36. package/dist/assets/python/googleadk/base/gitignore.template +40 -0
  37. package/dist/assets/python/googleadk/base/main.py +84 -0
  38. package/dist/assets/python/googleadk/base/mcp_client/client.py +15 -0
  39. package/dist/assets/python/googleadk/base/model/load.py +41 -0
  40. package/dist/assets/python/googleadk/base/pyproject.toml +21 -0
  41. package/dist/assets/python/langchain_langgraph/base/README.md +41 -0
  42. package/dist/assets/python/langchain_langgraph/base/gitignore.template +40 -0
  43. package/dist/assets/python/langchain_langgraph/base/main.py +51 -0
  44. package/dist/assets/python/langchain_langgraph/base/mcp_client/client.py +19 -0
  45. package/dist/assets/python/langchain_langgraph/base/model/load.py +123 -0
  46. package/dist/assets/python/langchain_langgraph/base/pyproject.toml +37 -0
  47. package/dist/assets/python/openaiagents/base/README.md +39 -0
  48. package/dist/assets/python/openaiagents/base/gitignore.template +40 -0
  49. package/dist/assets/python/openaiagents/base/main.py +56 -0
  50. package/dist/assets/python/openaiagents/base/mcp_client/client.py +14 -0
  51. package/dist/assets/python/openaiagents/base/model/load.py +37 -0
  52. package/dist/assets/python/openaiagents/base/pyproject.toml +20 -0
  53. package/dist/assets/python/strands/base/README.md +41 -0
  54. package/dist/assets/python/strands/base/gitignore.template +41 -0
  55. package/dist/assets/python/strands/base/main.py +76 -0
  56. package/dist/assets/python/strands/base/mcp_client/client.py +12 -0
  57. package/dist/assets/python/strands/base/model/load.py +123 -0
  58. package/dist/assets/python/strands/base/pyproject.toml +23 -0
  59. package/dist/assets/python/strands/capabilities/memory/session.py +39 -0
  60. package/dist/assets/typescript/.gitkeep +0 -0
  61. package/dist/cli/index.mjs +985 -0
  62. package/dist/index.d.ts +9 -0
  63. package/dist/index.d.ts.map +1 -0
  64. package/dist/index.js +27 -0
  65. package/dist/index.js.map +1 -0
  66. package/dist/lib/constants.d.ts +25 -0
  67. package/dist/lib/constants.d.ts.map +1 -0
  68. package/dist/lib/constants.js +49 -0
  69. package/dist/lib/constants.js.map +1 -0
  70. package/dist/lib/errors/config.d.ts +49 -0
  71. package/dist/lib/errors/config.d.ts.map +1 -0
  72. package/dist/lib/errors/config.js +167 -0
  73. package/dist/lib/errors/config.js.map +1 -0
  74. package/dist/lib/errors/index.d.ts +2 -0
  75. package/dist/lib/errors/index.d.ts.map +1 -0
  76. package/dist/lib/errors/index.js +18 -0
  77. package/dist/lib/errors/index.js.map +1 -0
  78. package/dist/lib/index.d.ts +7 -0
  79. package/dist/lib/index.d.ts.map +1 -0
  80. package/dist/lib/index.js +39 -0
  81. package/dist/lib/index.js.map +1 -0
  82. package/dist/lib/packaging/errors.d.ts +16 -0
  83. package/dist/lib/packaging/errors.d.ts.map +1 -0
  84. package/dist/lib/packaging/errors.js +36 -0
  85. package/dist/lib/packaging/errors.js.map +1 -0
  86. package/dist/lib/packaging/helpers.d.ts +54 -0
  87. package/dist/lib/packaging/helpers.d.ts.map +1 -0
  88. package/dist/lib/packaging/helpers.js +461 -0
  89. package/dist/lib/packaging/helpers.js.map +1 -0
  90. package/dist/lib/packaging/index.d.ts +36 -0
  91. package/dist/lib/packaging/index.d.ts.map +1 -0
  92. package/dist/lib/packaging/index.js +89 -0
  93. package/dist/lib/packaging/index.js.map +1 -0
  94. package/dist/lib/packaging/node.d.ts +17 -0
  95. package/dist/lib/packaging/node.d.ts.map +1 -0
  96. package/dist/lib/packaging/node.js +108 -0
  97. package/dist/lib/packaging/node.js.map +1 -0
  98. package/dist/lib/packaging/python.d.ts +17 -0
  99. package/dist/lib/packaging/python.d.ts.map +1 -0
  100. package/dist/lib/packaging/python.js +162 -0
  101. package/dist/lib/packaging/python.js.map +1 -0
  102. package/dist/lib/packaging/types/index.d.ts +2 -0
  103. package/dist/lib/packaging/types/index.d.ts.map +1 -0
  104. package/dist/lib/packaging/types/index.js +3 -0
  105. package/dist/lib/packaging/types/index.js.map +1 -0
  106. package/dist/lib/packaging/types/packaging.d.ts +57 -0
  107. package/dist/lib/packaging/types/packaging.d.ts.map +1 -0
  108. package/dist/lib/packaging/types/packaging.js +3 -0
  109. package/dist/lib/packaging/types/packaging.js.map +1 -0
  110. package/dist/lib/packaging/uv.d.ts +7 -0
  111. package/dist/lib/packaging/uv.d.ts.map +1 -0
  112. package/dist/lib/packaging/uv.js +40 -0
  113. package/dist/lib/packaging/uv.js.map +1 -0
  114. package/dist/lib/schemas/io/config-io.d.ts +106 -0
  115. package/dist/lib/schemas/io/config-io.d.ts.map +1 -0
  116. package/dist/lib/schemas/io/config-io.js +293 -0
  117. package/dist/lib/schemas/io/config-io.js.map +1 -0
  118. package/dist/lib/schemas/io/index.d.ts +3 -0
  119. package/dist/lib/schemas/io/index.d.ts.map +1 -0
  120. package/dist/lib/schemas/io/index.js +17 -0
  121. package/dist/lib/schemas/io/index.js.map +1 -0
  122. package/dist/lib/schemas/io/path-resolver.d.ts +112 -0
  123. package/dist/lib/schemas/io/path-resolver.d.ts.map +1 -0
  124. package/dist/lib/schemas/io/path-resolver.js +195 -0
  125. package/dist/lib/schemas/io/path-resolver.js.map +1 -0
  126. package/dist/lib/utils/aws-account.d.ts +7 -0
  127. package/dist/lib/utils/aws-account.d.ts.map +1 -0
  128. package/dist/lib/utils/aws-account.js +24 -0
  129. package/dist/lib/utils/aws-account.js.map +1 -0
  130. package/dist/lib/utils/credentials.d.ts +86 -0
  131. package/dist/lib/utils/credentials.d.ts.map +1 -0
  132. package/dist/lib/utils/credentials.js +153 -0
  133. package/dist/lib/utils/credentials.js.map +1 -0
  134. package/dist/lib/utils/env.d.ts +22 -0
  135. package/dist/lib/utils/env.d.ts.map +1 -0
  136. package/dist/lib/utils/env.js +65 -0
  137. package/dist/lib/utils/env.js.map +1 -0
  138. package/dist/lib/utils/index.d.ts +7 -0
  139. package/dist/lib/utils/index.d.ts.map +1 -0
  140. package/dist/lib/utils/index.js +23 -0
  141. package/dist/lib/utils/index.js.map +1 -0
  142. package/dist/lib/utils/platform.d.ts +63 -0
  143. package/dist/lib/utils/platform.d.ts.map +1 -0
  144. package/dist/lib/utils/platform.js +88 -0
  145. package/dist/lib/utils/platform.js.map +1 -0
  146. package/dist/lib/utils/subprocess.d.ts +29 -0
  147. package/dist/lib/utils/subprocess.d.ts.map +1 -0
  148. package/dist/lib/utils/subprocess.js +94 -0
  149. package/dist/lib/utils/subprocess.js.map +1 -0
  150. package/dist/lib/utils/zod.d.ts +14 -0
  151. package/dist/lib/utils/zod.d.ts.map +1 -0
  152. package/dist/lib/utils/zod.js +32 -0
  153. package/dist/lib/utils/zod.js.map +1 -0
  154. package/dist/schema/constants.d.ts +82 -0
  155. package/dist/schema/constants.d.ts.map +1 -0
  156. package/dist/schema/constants.js +117 -0
  157. package/dist/schema/constants.js.map +1 -0
  158. package/dist/schema/index.d.ts +4 -0
  159. package/dist/schema/index.d.ts.map +1 -0
  160. package/dist/schema/index.js +21 -0
  161. package/dist/schema/index.js.map +1 -0
  162. package/dist/schema/schemas/agent-env.d.ts +75 -0
  163. package/dist/schema/schemas/agent-env.d.ts.map +1 -0
  164. package/dist/schema/schemas/agent-env.js +84 -0
  165. package/dist/schema/schemas/agent-env.js.map +1 -0
  166. package/dist/schema/schemas/agentcore-project.d.ts +88 -0
  167. package/dist/schema/schemas/agentcore-project.d.ts.map +1 -0
  168. package/dist/schema/schemas/agentcore-project.js +83 -0
  169. package/dist/schema/schemas/agentcore-project.js.map +1 -0
  170. package/dist/schema/schemas/aws-targets.d.ts +50 -0
  171. package/dist/schema/schemas/aws-targets.d.ts.map +1 -0
  172. package/dist/schema/schemas/aws-targets.js +49 -0
  173. package/dist/schema/schemas/aws-targets.js.map +1 -0
  174. package/dist/schema/schemas/deployed-state.d.ts +260 -0
  175. package/dist/schema/schemas/deployed-state.d.ts.map +1 -0
  176. package/dist/schema/schemas/deployed-state.js +100 -0
  177. package/dist/schema/schemas/deployed-state.js.map +1 -0
  178. package/dist/schema/schemas/index.d.ts +8 -0
  179. package/dist/schema/schemas/index.d.ts.map +1 -0
  180. package/dist/schema/schemas/index.js +25 -0
  181. package/dist/schema/schemas/index.js.map +1 -0
  182. package/dist/schema/schemas/mcp-defs.d.ts +52 -0
  183. package/dist/schema/schemas/mcp-defs.d.ts.map +1 -0
  184. package/dist/schema/schemas/mcp-defs.js +50 -0
  185. package/dist/schema/schemas/mcp-defs.js.map +1 -0
  186. package/dist/schema/schemas/mcp.d.ts +659 -0
  187. package/dist/schema/schemas/mcp.d.ts.map +1 -0
  188. package/dist/schema/schemas/mcp.js +283 -0
  189. package/dist/schema/schemas/mcp.js.map +1 -0
  190. package/dist/schema/schemas/primitives/index.d.ts +3 -0
  191. package/dist/schema/schemas/primitives/index.d.ts.map +1 -0
  192. package/dist/schema/schemas/primitives/index.js +9 -0
  193. package/dist/schema/schemas/primitives/index.js.map +1 -0
  194. package/dist/schema/schemas/primitives/memory.d.ts +42 -0
  195. package/dist/schema/schemas/primitives/memory.d.ts.map +1 -0
  196. package/dist/schema/schemas/primitives/memory.js +50 -0
  197. package/dist/schema/schemas/primitives/memory.js.map +1 -0
  198. package/dist/schema/schemas/zod-util.d.ts +10 -0
  199. package/dist/schema/schemas/zod-util.d.ts.map +1 -0
  200. package/dist/schema/schemas/zod-util.js +23 -0
  201. package/dist/schema/schemas/zod-util.js.map +1 -0
  202. package/dist/schema/types/index.d.ts +2 -0
  203. package/dist/schema/types/index.d.ts.map +1 -0
  204. package/dist/schema/types/index.js +18 -0
  205. package/dist/schema/types/index.js.map +1 -0
  206. package/dist/schema/types/path.d.ts +27 -0
  207. package/dist/schema/types/path.d.ts.map +1 -0
  208. package/dist/schema/types/path.js +13 -0
  209. package/dist/schema/types/path.js.map +1 -0
  210. package/package.json +111 -0
  211. package/scripts/bump-version.ts +442 -0
  212. package/scripts/check-old-cli.mjs +26 -0
  213. package/scripts/copy-assets.mjs +50 -0
@@ -0,0 +1,659 @@
1
+ import type { DirectoryPath, FilePath } from '../types';
2
+ import { z } from 'zod';
3
+ export declare const GatewayTargetTypeSchema: z.ZodEnum<{
4
+ lambda: "lambda";
5
+ mcpServer: "mcpServer";
6
+ openApiSchema: "openApiSchema";
7
+ smithyModel: "smithyModel";
8
+ }>;
9
+ export type GatewayTargetType = z.infer<typeof GatewayTargetTypeSchema>;
10
+ export declare const GatewayAuthorizerTypeSchema: z.ZodEnum<{
11
+ NONE: "NONE";
12
+ CUSTOM_JWT: "CUSTOM_JWT";
13
+ }>;
14
+ export type GatewayAuthorizerType = z.infer<typeof GatewayAuthorizerTypeSchema>;
15
+ /**
16
+ * Custom JWT authorizer configuration.
17
+ * Used when authorizerType is 'CUSTOM_JWT'.
18
+ */
19
+ export declare const CustomJwtAuthorizerConfigSchema: z.ZodObject<{
20
+ discoveryUrl: z.ZodString;
21
+ allowedAudience: z.ZodArray<z.ZodString>;
22
+ allowedClients: z.ZodArray<z.ZodString>;
23
+ }, z.core.$strip>;
24
+ export type CustomJwtAuthorizerConfig = z.infer<typeof CustomJwtAuthorizerConfigSchema>;
25
+ /**
26
+ * Gateway authorizer configuration container.
27
+ */
28
+ export declare const GatewayAuthorizerConfigSchema: z.ZodObject<{
29
+ customJwtAuthorizer: z.ZodOptional<z.ZodObject<{
30
+ discoveryUrl: z.ZodString;
31
+ allowedAudience: z.ZodArray<z.ZodString>;
32
+ allowedClients: z.ZodArray<z.ZodString>;
33
+ }, z.core.$strip>>;
34
+ }, z.core.$strip>;
35
+ export type GatewayAuthorizerConfig = z.infer<typeof GatewayAuthorizerConfigSchema>;
36
+ export declare const McpImplLanguageSchema: z.ZodEnum<{
37
+ Python: "Python";
38
+ TypeScript: "TypeScript";
39
+ }>;
40
+ export type McpImplementationLanguage = z.infer<typeof McpImplLanguageSchema>;
41
+ export declare const ComputeHostSchema: z.ZodEnum<{
42
+ AgentCoreRuntime: "AgentCoreRuntime";
43
+ Lambda: "Lambda";
44
+ }>;
45
+ export type ComputeHost = z.infer<typeof ComputeHostSchema>;
46
+ /**
47
+ * Code-based tool implementation (Python, TypeScript).
48
+ *
49
+ * The CLI is responsible for:
50
+ * - installing dependencies
51
+ * - building / bundling
52
+ * - creating a zip artifact
53
+ * - uploading artifacts to S3
54
+ */
55
+ export declare const ToolImplementationBindingSchema: z.ZodObject<{
56
+ language: z.ZodEnum<{
57
+ Python: "Python";
58
+ TypeScript: "TypeScript";
59
+ }>;
60
+ path: z.ZodString;
61
+ handler: z.ZodString;
62
+ }, z.core.$strict>;
63
+ export type ToolImplementationBinding = z.infer<typeof ToolImplementationBindingSchema>;
64
+ /**
65
+ * Opaque IAM policy document.
66
+ *
67
+ * This is passed through verbatim to CloudFormation / IAM.
68
+ * AgentCore does not validate, transform, or provide compatibility guarantees.
69
+ */
70
+ export declare const IamPolicyDocumentSchema: z.ZodObject<{
71
+ Version: z.ZodString;
72
+ Statement: z.ZodArray<z.ZodUnknown>;
73
+ }, z.core.$loose>;
74
+ export type IamPolicyDocument = z.infer<typeof IamPolicyDocumentSchema>;
75
+ declare const CodeZipRuntimeConfigSchema: z.ZodObject<{
76
+ artifact: z.ZodLiteral<"CodeZip">;
77
+ pythonVersion: z.ZodEnum<{
78
+ PYTHON_3_10: "PYTHON_3_10";
79
+ PYTHON_3_11: "PYTHON_3_11";
80
+ PYTHON_3_12: "PYTHON_3_12";
81
+ PYTHON_3_13: "PYTHON_3_13";
82
+ }>;
83
+ name: z.ZodString;
84
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
85
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
86
+ instrumentation: z.ZodOptional<z.ZodObject<{
87
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
88
+ }, z.core.$strip>>;
89
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
90
+ PUBLIC: "PUBLIC";
91
+ PRIVATE: "PRIVATE";
92
+ }>>>;
93
+ description: z.ZodOptional<z.ZodString>;
94
+ }, z.core.$strict>;
95
+ export type CodeZipRuntimeConfig = z.infer<typeof CodeZipRuntimeConfigSchema>;
96
+ /**
97
+ * Runtime configuration for AgentCore Runtime (MCP mode).
98
+ * Explicit CodeZip artifact configuration - no CLI-managed defaults.
99
+ */
100
+ export declare const RuntimeConfigSchema: z.ZodObject<{
101
+ artifact: z.ZodLiteral<"CodeZip">;
102
+ pythonVersion: z.ZodEnum<{
103
+ PYTHON_3_10: "PYTHON_3_10";
104
+ PYTHON_3_11: "PYTHON_3_11";
105
+ PYTHON_3_12: "PYTHON_3_12";
106
+ PYTHON_3_13: "PYTHON_3_13";
107
+ }>;
108
+ name: z.ZodString;
109
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
110
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
111
+ instrumentation: z.ZodOptional<z.ZodObject<{
112
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
113
+ }, z.core.$strip>>;
114
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
115
+ PUBLIC: "PUBLIC";
116
+ PRIVATE: "PRIVATE";
117
+ }>>>;
118
+ description: z.ZodOptional<z.ZodString>;
119
+ }, z.core.$strict>;
120
+ export type RuntimeConfig = z.infer<typeof RuntimeConfigSchema>;
121
+ /**
122
+ * Lambda compute configuration schema.
123
+ * Lambda supports both Python and TypeScript.
124
+ */
125
+ declare const LambdaComputeConfigSchema: z.ZodObject<{
126
+ host: z.ZodLiteral<"Lambda">;
127
+ implementation: z.ZodObject<{
128
+ language: z.ZodEnum<{
129
+ Python: "Python";
130
+ TypeScript: "TypeScript";
131
+ }>;
132
+ path: z.ZodString;
133
+ handler: z.ZodString;
134
+ }, z.core.$strict>;
135
+ nodeVersion: z.ZodOptional<z.ZodEnum<{
136
+ NODE_18: "NODE_18";
137
+ NODE_20: "NODE_20";
138
+ NODE_22: "NODE_22";
139
+ }>>;
140
+ pythonVersion: z.ZodOptional<z.ZodEnum<{
141
+ PYTHON_3_10: "PYTHON_3_10";
142
+ PYTHON_3_11: "PYTHON_3_11";
143
+ PYTHON_3_12: "PYTHON_3_12";
144
+ PYTHON_3_13: "PYTHON_3_13";
145
+ }>>;
146
+ timeout: z.ZodOptional<z.ZodNumber>;
147
+ memorySize: z.ZodOptional<z.ZodNumber>;
148
+ iamPolicy: z.ZodOptional<z.ZodObject<{
149
+ Version: z.ZodString;
150
+ Statement: z.ZodArray<z.ZodUnknown>;
151
+ }, z.core.$loose>>;
152
+ }, z.core.$strict>;
153
+ export type LambdaComputeConfig = z.infer<typeof LambdaComputeConfigSchema>;
154
+ /**
155
+ * AgentCore Runtime compute configuration schema.
156
+ * AgentCore Runtime ONLY supports Python.
157
+ */
158
+ declare const AgentCoreRuntimeComputeConfigSchema: z.ZodObject<{
159
+ host: z.ZodLiteral<"AgentCoreRuntime">;
160
+ implementation: z.ZodObject<{
161
+ language: z.ZodEnum<{
162
+ Python: "Python";
163
+ TypeScript: "TypeScript";
164
+ }>;
165
+ path: z.ZodString;
166
+ handler: z.ZodString;
167
+ }, z.core.$strict>;
168
+ runtime: z.ZodOptional<z.ZodObject<{
169
+ artifact: z.ZodLiteral<"CodeZip">;
170
+ pythonVersion: z.ZodEnum<{
171
+ PYTHON_3_10: "PYTHON_3_10";
172
+ PYTHON_3_11: "PYTHON_3_11";
173
+ PYTHON_3_12: "PYTHON_3_12";
174
+ PYTHON_3_13: "PYTHON_3_13";
175
+ }>;
176
+ name: z.ZodString;
177
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
178
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
179
+ instrumentation: z.ZodOptional<z.ZodObject<{
180
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
181
+ }, z.core.$strip>>;
182
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
183
+ PUBLIC: "PUBLIC";
184
+ PRIVATE: "PRIVATE";
185
+ }>>>;
186
+ description: z.ZodOptional<z.ZodString>;
187
+ }, z.core.$strict>>;
188
+ iamPolicy: z.ZodOptional<z.ZodObject<{
189
+ Version: z.ZodString;
190
+ Statement: z.ZodArray<z.ZodUnknown>;
191
+ }, z.core.$loose>>;
192
+ }, z.core.$strict>;
193
+ export type AgentCoreRuntimeComputeConfig = z.infer<typeof AgentCoreRuntimeComputeConfigSchema>;
194
+ /**
195
+ * Tool compute configuration (discriminated union).
196
+ */
197
+ export declare const ToolComputeConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
198
+ host: z.ZodLiteral<"Lambda">;
199
+ implementation: z.ZodObject<{
200
+ language: z.ZodEnum<{
201
+ Python: "Python";
202
+ TypeScript: "TypeScript";
203
+ }>;
204
+ path: z.ZodString;
205
+ handler: z.ZodString;
206
+ }, z.core.$strict>;
207
+ nodeVersion: z.ZodOptional<z.ZodEnum<{
208
+ NODE_18: "NODE_18";
209
+ NODE_20: "NODE_20";
210
+ NODE_22: "NODE_22";
211
+ }>>;
212
+ pythonVersion: z.ZodOptional<z.ZodEnum<{
213
+ PYTHON_3_10: "PYTHON_3_10";
214
+ PYTHON_3_11: "PYTHON_3_11";
215
+ PYTHON_3_12: "PYTHON_3_12";
216
+ PYTHON_3_13: "PYTHON_3_13";
217
+ }>>;
218
+ timeout: z.ZodOptional<z.ZodNumber>;
219
+ memorySize: z.ZodOptional<z.ZodNumber>;
220
+ iamPolicy: z.ZodOptional<z.ZodObject<{
221
+ Version: z.ZodString;
222
+ Statement: z.ZodArray<z.ZodUnknown>;
223
+ }, z.core.$loose>>;
224
+ }, z.core.$strict>, z.ZodObject<{
225
+ host: z.ZodLiteral<"AgentCoreRuntime">;
226
+ implementation: z.ZodObject<{
227
+ language: z.ZodEnum<{
228
+ Python: "Python";
229
+ TypeScript: "TypeScript";
230
+ }>;
231
+ path: z.ZodString;
232
+ handler: z.ZodString;
233
+ }, z.core.$strict>;
234
+ runtime: z.ZodOptional<z.ZodObject<{
235
+ artifact: z.ZodLiteral<"CodeZip">;
236
+ pythonVersion: z.ZodEnum<{
237
+ PYTHON_3_10: "PYTHON_3_10";
238
+ PYTHON_3_11: "PYTHON_3_11";
239
+ PYTHON_3_12: "PYTHON_3_12";
240
+ PYTHON_3_13: "PYTHON_3_13";
241
+ }>;
242
+ name: z.ZodString;
243
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
244
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
245
+ instrumentation: z.ZodOptional<z.ZodObject<{
246
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
247
+ }, z.core.$strip>>;
248
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
249
+ PUBLIC: "PUBLIC";
250
+ PRIVATE: "PRIVATE";
251
+ }>>>;
252
+ description: z.ZodOptional<z.ZodString>;
253
+ }, z.core.$strict>>;
254
+ iamPolicy: z.ZodOptional<z.ZodObject<{
255
+ Version: z.ZodString;
256
+ Statement: z.ZodArray<z.ZodUnknown>;
257
+ }, z.core.$loose>>;
258
+ }, z.core.$strict>], "host">;
259
+ export type ToolComputeConfig = z.infer<typeof ToolComputeConfigSchema>;
260
+ /**
261
+ * A gateway target binds one or more ToolDefinitions to compute that services them.
262
+ *
263
+ * A single Lambda or AgentCoreRuntime can expose multiple tools. The gateway routes
264
+ * tool invocations to the appropriate target based on tool name.
265
+ *
266
+ * If compute is omitted, the tools are treated as external or abstract targets.
267
+ */
268
+ export declare const AgentCoreGatewayTargetSchema: z.ZodObject<{
269
+ name: z.ZodString;
270
+ targetType: z.ZodEnum<{
271
+ lambda: "lambda";
272
+ mcpServer: "mcpServer";
273
+ openApiSchema: "openApiSchema";
274
+ smithyModel: "smithyModel";
275
+ }>;
276
+ toolDefinitions: z.ZodArray<z.ZodObject<{
277
+ name: z.ZodString;
278
+ description: z.ZodString;
279
+ inputSchema: z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>;
280
+ outputSchema: z.ZodOptional<z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>>;
281
+ }, z.core.$strict>>;
282
+ compute: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
283
+ host: z.ZodLiteral<"Lambda">;
284
+ implementation: z.ZodObject<{
285
+ language: z.ZodEnum<{
286
+ Python: "Python";
287
+ TypeScript: "TypeScript";
288
+ }>;
289
+ path: z.ZodString;
290
+ handler: z.ZodString;
291
+ }, z.core.$strict>;
292
+ nodeVersion: z.ZodOptional<z.ZodEnum<{
293
+ NODE_18: "NODE_18";
294
+ NODE_20: "NODE_20";
295
+ NODE_22: "NODE_22";
296
+ }>>;
297
+ pythonVersion: z.ZodOptional<z.ZodEnum<{
298
+ PYTHON_3_10: "PYTHON_3_10";
299
+ PYTHON_3_11: "PYTHON_3_11";
300
+ PYTHON_3_12: "PYTHON_3_12";
301
+ PYTHON_3_13: "PYTHON_3_13";
302
+ }>>;
303
+ timeout: z.ZodOptional<z.ZodNumber>;
304
+ memorySize: z.ZodOptional<z.ZodNumber>;
305
+ iamPolicy: z.ZodOptional<z.ZodObject<{
306
+ Version: z.ZodString;
307
+ Statement: z.ZodArray<z.ZodUnknown>;
308
+ }, z.core.$loose>>;
309
+ }, z.core.$strict>, z.ZodObject<{
310
+ host: z.ZodLiteral<"AgentCoreRuntime">;
311
+ implementation: z.ZodObject<{
312
+ language: z.ZodEnum<{
313
+ Python: "Python";
314
+ TypeScript: "TypeScript";
315
+ }>;
316
+ path: z.ZodString;
317
+ handler: z.ZodString;
318
+ }, z.core.$strict>;
319
+ runtime: z.ZodOptional<z.ZodObject<{
320
+ artifact: z.ZodLiteral<"CodeZip">;
321
+ pythonVersion: z.ZodEnum<{
322
+ PYTHON_3_10: "PYTHON_3_10";
323
+ PYTHON_3_11: "PYTHON_3_11";
324
+ PYTHON_3_12: "PYTHON_3_12";
325
+ PYTHON_3_13: "PYTHON_3_13";
326
+ }>;
327
+ name: z.ZodString;
328
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
329
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
330
+ instrumentation: z.ZodOptional<z.ZodObject<{
331
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
332
+ }, z.core.$strip>>;
333
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
334
+ PUBLIC: "PUBLIC";
335
+ PRIVATE: "PRIVATE";
336
+ }>>>;
337
+ description: z.ZodOptional<z.ZodString>;
338
+ }, z.core.$strict>>;
339
+ iamPolicy: z.ZodOptional<z.ZodObject<{
340
+ Version: z.ZodString;
341
+ Statement: z.ZodArray<z.ZodUnknown>;
342
+ }, z.core.$loose>>;
343
+ }, z.core.$strict>], "host">>;
344
+ }, z.core.$strict>;
345
+ export type AgentCoreGatewayTarget = z.infer<typeof AgentCoreGatewayTargetSchema>;
346
+ /**
347
+ * Gateway abstraction with opinionated defaults.
348
+ * Supports NONE (default) or CUSTOM_JWT authorizer types.
349
+ */
350
+ export declare const AgentCoreGatewaySchema: z.ZodObject<{
351
+ name: z.ZodString;
352
+ description: z.ZodOptional<z.ZodString>;
353
+ targets: z.ZodArray<z.ZodObject<{
354
+ name: z.ZodString;
355
+ targetType: z.ZodEnum<{
356
+ lambda: "lambda";
357
+ mcpServer: "mcpServer";
358
+ openApiSchema: "openApiSchema";
359
+ smithyModel: "smithyModel";
360
+ }>;
361
+ toolDefinitions: z.ZodArray<z.ZodObject<{
362
+ name: z.ZodString;
363
+ description: z.ZodString;
364
+ inputSchema: z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>;
365
+ outputSchema: z.ZodOptional<z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>>;
366
+ }, z.core.$strict>>;
367
+ compute: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
368
+ host: z.ZodLiteral<"Lambda">;
369
+ implementation: z.ZodObject<{
370
+ language: z.ZodEnum<{
371
+ Python: "Python";
372
+ TypeScript: "TypeScript";
373
+ }>;
374
+ path: z.ZodString;
375
+ handler: z.ZodString;
376
+ }, z.core.$strict>;
377
+ nodeVersion: z.ZodOptional<z.ZodEnum<{
378
+ NODE_18: "NODE_18";
379
+ NODE_20: "NODE_20";
380
+ NODE_22: "NODE_22";
381
+ }>>;
382
+ pythonVersion: z.ZodOptional<z.ZodEnum<{
383
+ PYTHON_3_10: "PYTHON_3_10";
384
+ PYTHON_3_11: "PYTHON_3_11";
385
+ PYTHON_3_12: "PYTHON_3_12";
386
+ PYTHON_3_13: "PYTHON_3_13";
387
+ }>>;
388
+ timeout: z.ZodOptional<z.ZodNumber>;
389
+ memorySize: z.ZodOptional<z.ZodNumber>;
390
+ iamPolicy: z.ZodOptional<z.ZodObject<{
391
+ Version: z.ZodString;
392
+ Statement: z.ZodArray<z.ZodUnknown>;
393
+ }, z.core.$loose>>;
394
+ }, z.core.$strict>, z.ZodObject<{
395
+ host: z.ZodLiteral<"AgentCoreRuntime">;
396
+ implementation: z.ZodObject<{
397
+ language: z.ZodEnum<{
398
+ Python: "Python";
399
+ TypeScript: "TypeScript";
400
+ }>;
401
+ path: z.ZodString;
402
+ handler: z.ZodString;
403
+ }, z.core.$strict>;
404
+ runtime: z.ZodOptional<z.ZodObject<{
405
+ artifact: z.ZodLiteral<"CodeZip">;
406
+ pythonVersion: z.ZodEnum<{
407
+ PYTHON_3_10: "PYTHON_3_10";
408
+ PYTHON_3_11: "PYTHON_3_11";
409
+ PYTHON_3_12: "PYTHON_3_12";
410
+ PYTHON_3_13: "PYTHON_3_13";
411
+ }>;
412
+ name: z.ZodString;
413
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
414
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
415
+ instrumentation: z.ZodOptional<z.ZodObject<{
416
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
417
+ }, z.core.$strip>>;
418
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
419
+ PUBLIC: "PUBLIC";
420
+ PRIVATE: "PRIVATE";
421
+ }>>>;
422
+ description: z.ZodOptional<z.ZodString>;
423
+ }, z.core.$strict>>;
424
+ iamPolicy: z.ZodOptional<z.ZodObject<{
425
+ Version: z.ZodString;
426
+ Statement: z.ZodArray<z.ZodUnknown>;
427
+ }, z.core.$loose>>;
428
+ }, z.core.$strict>], "host">>;
429
+ }, z.core.$strict>>;
430
+ authorizerType: z.ZodDefault<z.ZodEnum<{
431
+ NONE: "NONE";
432
+ CUSTOM_JWT: "CUSTOM_JWT";
433
+ }>>;
434
+ authorizerConfiguration: z.ZodOptional<z.ZodObject<{
435
+ customJwtAuthorizer: z.ZodOptional<z.ZodObject<{
436
+ discoveryUrl: z.ZodString;
437
+ allowedAudience: z.ZodArray<z.ZodString>;
438
+ allowedClients: z.ZodArray<z.ZodString>;
439
+ }, z.core.$strip>>;
440
+ }, z.core.$strip>>;
441
+ }, z.core.$strict>;
442
+ export type AgentCoreGateway = z.infer<typeof AgentCoreGatewaySchema>;
443
+ /**
444
+ * Binding from an MCP runtime tool to an agent.
445
+ * When present, the agent is granted InvokeAgentRuntime permission
446
+ * and receives the runtime ARN in the specified environment variable.
447
+ */
448
+ export declare const McpRuntimeBindingSchema: z.ZodObject<{
449
+ agentName: z.ZodString;
450
+ envVarName: z.ZodString;
451
+ }, z.core.$strict>;
452
+ export type McpRuntimeBinding = z.infer<typeof McpRuntimeBindingSchema>;
453
+ /**
454
+ * AgentCore MCP Runtime tool servers.
455
+ *
456
+ * These are not behind a Gateway. They are deployed as AgentCoreRuntime compute
457
+ * and are directly addressable by agents via the generated DNS endpoint.
458
+ *
459
+ * Use the `bindings` array to grant agents permission to invoke this tool.
460
+ * Each binding grants InvokeAgentRuntime permission and sets an environment variable
461
+ * with the runtime ARN on the bound agent.
462
+ */
463
+ export declare const AgentCoreMcpRuntimeToolSchema: z.ZodObject<{
464
+ name: z.ZodString;
465
+ toolDefinition: z.ZodObject<{
466
+ name: z.ZodString;
467
+ description: z.ZodString;
468
+ inputSchema: z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>;
469
+ outputSchema: z.ZodOptional<z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>>;
470
+ }, z.core.$strict>;
471
+ compute: z.ZodObject<{
472
+ host: z.ZodLiteral<"AgentCoreRuntime">;
473
+ implementation: z.ZodObject<{
474
+ language: z.ZodEnum<{
475
+ Python: "Python";
476
+ TypeScript: "TypeScript";
477
+ }>;
478
+ path: z.ZodString;
479
+ handler: z.ZodString;
480
+ }, z.core.$strict>;
481
+ runtime: z.ZodOptional<z.ZodObject<{
482
+ artifact: z.ZodLiteral<"CodeZip">;
483
+ pythonVersion: z.ZodEnum<{
484
+ PYTHON_3_10: "PYTHON_3_10";
485
+ PYTHON_3_11: "PYTHON_3_11";
486
+ PYTHON_3_12: "PYTHON_3_12";
487
+ PYTHON_3_13: "PYTHON_3_13";
488
+ }>;
489
+ name: z.ZodString;
490
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
491
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
492
+ instrumentation: z.ZodOptional<z.ZodObject<{
493
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
494
+ }, z.core.$strip>>;
495
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
496
+ PUBLIC: "PUBLIC";
497
+ PRIVATE: "PRIVATE";
498
+ }>>>;
499
+ description: z.ZodOptional<z.ZodString>;
500
+ }, z.core.$strict>>;
501
+ iamPolicy: z.ZodOptional<z.ZodObject<{
502
+ Version: z.ZodString;
503
+ Statement: z.ZodArray<z.ZodUnknown>;
504
+ }, z.core.$loose>>;
505
+ }, z.core.$strict>;
506
+ bindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
507
+ agentName: z.ZodString;
508
+ envVarName: z.ZodString;
509
+ }, z.core.$strict>>>;
510
+ }, z.core.$strict>;
511
+ export type AgentCoreMcpRuntimeTool = z.infer<typeof AgentCoreMcpRuntimeToolSchema>;
512
+ /**
513
+ * Top-level MCP schema.
514
+ */
515
+ export declare const AgentCoreMcpSpecSchema: z.ZodObject<{
516
+ agentCoreGateways: z.ZodArray<z.ZodObject<{
517
+ name: z.ZodString;
518
+ description: z.ZodOptional<z.ZodString>;
519
+ targets: z.ZodArray<z.ZodObject<{
520
+ name: z.ZodString;
521
+ targetType: z.ZodEnum<{
522
+ lambda: "lambda";
523
+ mcpServer: "mcpServer";
524
+ openApiSchema: "openApiSchema";
525
+ smithyModel: "smithyModel";
526
+ }>;
527
+ toolDefinitions: z.ZodArray<z.ZodObject<{
528
+ name: z.ZodString;
529
+ description: z.ZodString;
530
+ inputSchema: z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>;
531
+ outputSchema: z.ZodOptional<z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>>;
532
+ }, z.core.$strict>>;
533
+ compute: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
534
+ host: z.ZodLiteral<"Lambda">;
535
+ implementation: z.ZodObject<{
536
+ language: z.ZodEnum<{
537
+ Python: "Python";
538
+ TypeScript: "TypeScript";
539
+ }>;
540
+ path: z.ZodString;
541
+ handler: z.ZodString;
542
+ }, z.core.$strict>;
543
+ nodeVersion: z.ZodOptional<z.ZodEnum<{
544
+ NODE_18: "NODE_18";
545
+ NODE_20: "NODE_20";
546
+ NODE_22: "NODE_22";
547
+ }>>;
548
+ pythonVersion: z.ZodOptional<z.ZodEnum<{
549
+ PYTHON_3_10: "PYTHON_3_10";
550
+ PYTHON_3_11: "PYTHON_3_11";
551
+ PYTHON_3_12: "PYTHON_3_12";
552
+ PYTHON_3_13: "PYTHON_3_13";
553
+ }>>;
554
+ timeout: z.ZodOptional<z.ZodNumber>;
555
+ memorySize: z.ZodOptional<z.ZodNumber>;
556
+ iamPolicy: z.ZodOptional<z.ZodObject<{
557
+ Version: z.ZodString;
558
+ Statement: z.ZodArray<z.ZodUnknown>;
559
+ }, z.core.$loose>>;
560
+ }, z.core.$strict>, z.ZodObject<{
561
+ host: z.ZodLiteral<"AgentCoreRuntime">;
562
+ implementation: z.ZodObject<{
563
+ language: z.ZodEnum<{
564
+ Python: "Python";
565
+ TypeScript: "TypeScript";
566
+ }>;
567
+ path: z.ZodString;
568
+ handler: z.ZodString;
569
+ }, z.core.$strict>;
570
+ runtime: z.ZodOptional<z.ZodObject<{
571
+ artifact: z.ZodLiteral<"CodeZip">;
572
+ pythonVersion: z.ZodEnum<{
573
+ PYTHON_3_10: "PYTHON_3_10";
574
+ PYTHON_3_11: "PYTHON_3_11";
575
+ PYTHON_3_12: "PYTHON_3_12";
576
+ PYTHON_3_13: "PYTHON_3_13";
577
+ }>;
578
+ name: z.ZodString;
579
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
580
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
581
+ instrumentation: z.ZodOptional<z.ZodObject<{
582
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
583
+ }, z.core.$strip>>;
584
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
585
+ PUBLIC: "PUBLIC";
586
+ PRIVATE: "PRIVATE";
587
+ }>>>;
588
+ description: z.ZodOptional<z.ZodString>;
589
+ }, z.core.$strict>>;
590
+ iamPolicy: z.ZodOptional<z.ZodObject<{
591
+ Version: z.ZodString;
592
+ Statement: z.ZodArray<z.ZodUnknown>;
593
+ }, z.core.$loose>>;
594
+ }, z.core.$strict>], "host">>;
595
+ }, z.core.$strict>>;
596
+ authorizerType: z.ZodDefault<z.ZodEnum<{
597
+ NONE: "NONE";
598
+ CUSTOM_JWT: "CUSTOM_JWT";
599
+ }>>;
600
+ authorizerConfiguration: z.ZodOptional<z.ZodObject<{
601
+ customJwtAuthorizer: z.ZodOptional<z.ZodObject<{
602
+ discoveryUrl: z.ZodString;
603
+ allowedAudience: z.ZodArray<z.ZodString>;
604
+ allowedClients: z.ZodArray<z.ZodString>;
605
+ }, z.core.$strip>>;
606
+ }, z.core.$strip>>;
607
+ }, z.core.$strict>>;
608
+ mcpRuntimeTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
609
+ name: z.ZodString;
610
+ toolDefinition: z.ZodObject<{
611
+ name: z.ZodString;
612
+ description: z.ZodString;
613
+ inputSchema: z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>;
614
+ outputSchema: z.ZodOptional<z.ZodType<import("./mcp-defs").SchemaDefinition, unknown, z.core.$ZodTypeInternals<import("./mcp-defs").SchemaDefinition, unknown>>>;
615
+ }, z.core.$strict>;
616
+ compute: z.ZodObject<{
617
+ host: z.ZodLiteral<"AgentCoreRuntime">;
618
+ implementation: z.ZodObject<{
619
+ language: z.ZodEnum<{
620
+ Python: "Python";
621
+ TypeScript: "TypeScript";
622
+ }>;
623
+ path: z.ZodString;
624
+ handler: z.ZodString;
625
+ }, z.core.$strict>;
626
+ runtime: z.ZodOptional<z.ZodObject<{
627
+ artifact: z.ZodLiteral<"CodeZip">;
628
+ pythonVersion: z.ZodEnum<{
629
+ PYTHON_3_10: "PYTHON_3_10";
630
+ PYTHON_3_11: "PYTHON_3_11";
631
+ PYTHON_3_12: "PYTHON_3_12";
632
+ PYTHON_3_13: "PYTHON_3_13";
633
+ }>;
634
+ name: z.ZodString;
635
+ entrypoint: z.ZodType<FilePath, unknown, z.core.$ZodTypeInternals<FilePath, unknown>>;
636
+ codeLocation: z.ZodType<DirectoryPath, unknown, z.core.$ZodTypeInternals<DirectoryPath, unknown>>;
637
+ instrumentation: z.ZodOptional<z.ZodObject<{
638
+ enableOtel: z.ZodDefault<z.ZodBoolean>;
639
+ }, z.core.$strip>>;
640
+ networkMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
641
+ PUBLIC: "PUBLIC";
642
+ PRIVATE: "PRIVATE";
643
+ }>>>;
644
+ description: z.ZodOptional<z.ZodString>;
645
+ }, z.core.$strict>>;
646
+ iamPolicy: z.ZodOptional<z.ZodObject<{
647
+ Version: z.ZodString;
648
+ Statement: z.ZodArray<z.ZodUnknown>;
649
+ }, z.core.$loose>>;
650
+ }, z.core.$strict>;
651
+ bindings: z.ZodOptional<z.ZodArray<z.ZodObject<{
652
+ agentName: z.ZodString;
653
+ envVarName: z.ZodString;
654
+ }, z.core.$strict>>>;
655
+ }, z.core.$strict>>>;
656
+ }, z.core.$strict>;
657
+ export type AgentCoreMcpSpec = z.infer<typeof AgentCoreMcpSpecSchema>;
658
+ export {};
659
+ //# sourceMappingURL=mcp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mcp.d.ts","sourceRoot":"","sources":["../../../src/schema/schemas/mcp.ts"],"names":[],"mappings":"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"}