@aws/nx-plugin-mcp 0.113.0 → 0.114.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/bin/aws-nx-mcp.js CHANGED
@@ -19000,7 +19000,11 @@ var generators$1 = {
19000
19000
  "connection/py-strands-agent-mcp",
19001
19001
  "connection/ts-strands-agent-mcp",
19002
19002
  "connection/py-strands-agent-a2a",
19003
- "connection/ts-strands-agent-a2a"
19003
+ "connection/ts-strands-agent-a2a",
19004
+ "connection/trpc-rdb",
19005
+ "connection/smithy-rdb",
19006
+ "connection/ts-mcp-server-rdb",
19007
+ "connection/ts-strands-agent-rdb"
19004
19008
  ]
19005
19009
  },
19006
19010
  "license": {
@@ -19252,6 +19256,34 @@ var generators$1 = {
19252
19256
  "schema": "./src/ts/rdb/schema.json",
19253
19257
  "description": "Create a relational database project",
19254
19258
  "metric": "g38"
19259
+ },
19260
+ "ts#rdb#smithy-connection": {
19261
+ "factory": "./src/ts/rdb/smithy-connection/generator",
19262
+ "schema": "./src/ts/rdb/smithy-connection/schema.json",
19263
+ "description": "Connect a Smithy backend to a ts#rdb project",
19264
+ "metric": "g39",
19265
+ "hidden": true
19266
+ },
19267
+ "ts#rdb#trpc-connection": {
19268
+ "factory": "./src/ts/rdb/trpc-connection/generator",
19269
+ "schema": "./src/ts/rdb/trpc-connection/schema.json",
19270
+ "description": "Connect a ts#trpc-api project to a ts#rdb project",
19271
+ "metric": "g40",
19272
+ "hidden": true
19273
+ },
19274
+ "ts#rdb#strands-agent-connection": {
19275
+ "factory": "./src/ts/rdb/strands-agent-connection/generator",
19276
+ "schema": "./src/ts/rdb/strands-agent-connection/schema.json",
19277
+ "description": "Connect a ts#strands-agent to a ts#rdb project",
19278
+ "metric": "g41",
19279
+ "hidden": true
19280
+ },
19281
+ "ts#rdb#mcp-server-connection": {
19282
+ "factory": "./src/ts/rdb/mcp-server-connection/generator",
19283
+ "schema": "./src/ts/rdb/mcp-server-connection/schema.json",
19284
+ "description": "Connect a ts#mcp-server to a ts#rdb project",
19285
+ "metric": "g42",
19286
+ "hidden": true
19255
19287
  }
19256
19288
  };
19257
19289
  //#endregion
package/generators.json CHANGED
@@ -19,7 +19,11 @@
19
19
  "connection/py-strands-agent-mcp",
20
20
  "connection/ts-strands-agent-mcp",
21
21
  "connection/py-strands-agent-a2a",
22
- "connection/ts-strands-agent-a2a"
22
+ "connection/ts-strands-agent-a2a",
23
+ "connection/trpc-rdb",
24
+ "connection/smithy-rdb",
25
+ "connection/ts-mcp-server-rdb",
26
+ "connection/ts-strands-agent-rdb"
23
27
  ]
24
28
  },
25
29
  "license": {
@@ -271,6 +275,34 @@
271
275
  "schema": "./src/ts/rdb/schema.json",
272
276
  "description": "Create a relational database project",
273
277
  "metric": "g38"
278
+ },
279
+ "ts#rdb#smithy-connection": {
280
+ "factory": "./src/ts/rdb/smithy-connection/generator",
281
+ "schema": "./src/ts/rdb/smithy-connection/schema.json",
282
+ "description": "Connect a Smithy backend to a ts#rdb project",
283
+ "metric": "g39",
284
+ "hidden": true
285
+ },
286
+ "ts#rdb#trpc-connection": {
287
+ "factory": "./src/ts/rdb/trpc-connection/generator",
288
+ "schema": "./src/ts/rdb/trpc-connection/schema.json",
289
+ "description": "Connect a ts#trpc-api project to a ts#rdb project",
290
+ "metric": "g40",
291
+ "hidden": true
292
+ },
293
+ "ts#rdb#strands-agent-connection": {
294
+ "factory": "./src/ts/rdb/strands-agent-connection/generator",
295
+ "schema": "./src/ts/rdb/strands-agent-connection/schema.json",
296
+ "description": "Connect a ts#strands-agent to a ts#rdb project",
297
+ "metric": "g41",
298
+ "hidden": true
299
+ },
300
+ "ts#rdb#mcp-server-connection": {
301
+ "factory": "./src/ts/rdb/mcp-server-connection/generator",
302
+ "schema": "./src/ts/rdb/mcp-server-connection/schema.json",
303
+ "description": "Connect a ts#mcp-server to a ts#rdb project",
304
+ "metric": "g42",
305
+ "hidden": true
274
306
  }
275
307
  }
276
308
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "0.113.0",
3
+ "version": "0.114.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#rdb#mcp-server-connection",
4
+ "title": "ts#rdb#mcp-server-connection",
5
+ "description": "Connect a ts#mcp-server to a ts#rdb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The project containing the ts#mcp-server to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The ts#rdb project to connect to"
15
+ },
16
+ "sourceComponent": {
17
+ "type": "string",
18
+ "description": "The MCP server component name"
19
+ }
20
+ },
21
+ "required": ["sourceProject", "targetProject"]
22
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#rdb#smithy-connection",
4
+ "title": "ts#rdb#smithy-connection",
5
+ "description": "Connect a Smithy backend to a ts#rdb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The TypeScript project to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The ts#rdb project to connect to"
15
+ }
16
+ },
17
+ "required": ["sourceProject", "targetProject"]
18
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#rdb#strands-agent-connection",
4
+ "title": "ts#rdb#strands-agent-connection",
5
+ "description": "Connect a ts#strands-agent to a ts#rdb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The project containing the ts#strands-agent to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The ts#rdb project to connect to"
15
+ },
16
+ "sourceComponent": {
17
+ "type": "string",
18
+ "description": "The agent component name"
19
+ }
20
+ },
21
+ "required": ["sourceProject", "targetProject"]
22
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "ts#rdb#trpc-connection",
4
+ "title": "ts#rdb#trpc-connection",
5
+ "description": "Connect a ts#trpc-api project to a ts#rdb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The ts#trpc-api project to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The ts#rdb project to connect to"
15
+ }
16
+ },
17
+ "required": ["sourceProject", "targetProject"]
18
+ }