@aws/nx-plugin-mcp 1.0.0-rc.13 → 1.0.0-rc.14

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.
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "py#dynamodb#fast-api-connection",
4
+ "title": "py#dynamodb#fast-api-connection",
5
+ "description": "Connect a py#fast-api project to a py#dynamodb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The py#fast-api project to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The py#dynamodb 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": "py#dynamodb#mcp-server-connection",
4
+ "title": "py#dynamodb#mcp-server-connection",
5
+ "description": "Connect a py#mcp-server to a py#dynamodb project",
6
+ "type": "object",
7
+ "properties": {
8
+ "sourceProject": {
9
+ "type": "string",
10
+ "description": "The project containing the py#mcp-server to connect from"
11
+ },
12
+ "targetProject": {
13
+ "type": "string",
14
+ "description": "The py#dynamodb 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,70 @@
1
+ {
2
+ "$schema": "https://json-schema.org/schema",
3
+ "$id": "py#dynamodb",
4
+ "title": "py#dynamodb",
5
+ "description": "Create a Python DynamoDB project",
6
+ "type": "object",
7
+ "properties": {
8
+ "name": {
9
+ "type": "string",
10
+ "description": "Name of the DynamoDB project to generate",
11
+ "$default": {
12
+ "$source": "argv",
13
+ "index": 0
14
+ },
15
+ "x-priority": "important",
16
+ "x-prompt": "What name would you like your DynamoDB project to have? i.e: MyTable"
17
+ },
18
+ "directory": {
19
+ "type": "string",
20
+ "description": "The directory to store the project in.",
21
+ "default": "packages",
22
+ "x-priority": "important",
23
+ "x-prompt": "Which directory do you want to create the project in?"
24
+ },
25
+ "subDirectory": {
26
+ "type": "string",
27
+ "description": "The sub directory the project is placed in. By default this is the project name.",
28
+ "x-prompt": "Which sub directory do you want to create the project in? (By default this is the project name)"
29
+ },
30
+ "framework": {
31
+ "type": "string",
32
+ "enum": ["pynamodb"],
33
+ "default": "pynamodb",
34
+ "description": "The framework to use for DynamoDB entities.",
35
+ "x-priority": "important",
36
+ "x-prompt": {
37
+ "message": "Which framework would you like to use for DynamoDB entities?",
38
+ "type": "list",
39
+ "items": [
40
+ {
41
+ "value": "pynamodb",
42
+ "label": "PynamoDB"
43
+ }
44
+ ],
45
+ "default": "pynamodb"
46
+ }
47
+ },
48
+ "tableName": {
49
+ "type": "string",
50
+ "description": "The DynamoDB table name. Auto-generated if not specified."
51
+ },
52
+ "infra": {
53
+ "type": "string",
54
+ "enum": ["dynamodb", "none"],
55
+ "default": "dynamodb",
56
+ "description": "Infrastructure to provision for the DynamoDB table.",
57
+ "x-priority": "important",
58
+ "x-prompt": "Which infrastructure would you like to provision?"
59
+ },
60
+ "iac": {
61
+ "type": "string",
62
+ "description": "The preferred IaC provider. By default this is inherited from your initial selection.",
63
+ "enum": ["inherit", "cdk", "terraform"],
64
+ "x-priority": "important",
65
+ "default": "inherit",
66
+ "x-prompt": "Which provider would you like to manage your infrastructure? (default: Inherit)"
67
+ }
68
+ },
69
+ "required": ["name"]
70
+ }
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json-schema.org/schema",
3
3
  "$id": "ts#dynamodb",
4
4
  "title": "ts#dynamodb",
5
- "description": "Create a DynamoDB project",
5
+ "description": "Create a TypeScript DynamoDB project",
6
6
  "type": "object",
7
7
  "properties": {
8
8
  "name": {
@@ -27,9 +27,27 @@
27
27
  "description": "The sub directory the project is placed in. By default this is the project name.",
28
28
  "x-prompt": "Which sub directory do you want to create the project in? (By default this is the project name)"
29
29
  },
30
+ "framework": {
31
+ "type": "string",
32
+ "enum": ["electrodb"],
33
+ "default": "electrodb",
34
+ "description": "The framework to use for DynamoDB entities.",
35
+ "x-priority": "important",
36
+ "x-prompt": {
37
+ "message": "Which framework would you like to use for DynamoDB entities?",
38
+ "type": "list",
39
+ "items": [
40
+ {
41
+ "value": "electrodb",
42
+ "label": "ElectroDB"
43
+ }
44
+ ],
45
+ "default": "electrodb"
46
+ }
47
+ },
30
48
  "tableName": {
31
49
  "type": "string",
32
- "description": "The DynamoDB table name. Defaults to the project name."
50
+ "description": "The DynamoDB table name. Auto-generated if not specified."
33
51
  },
34
52
  "infra": {
35
53
  "type": "string",