awslabs.cfn-mcp-server 1.0.4__py3-none-any.whl → 1.0.6__py3-none-any.whl
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.
- awslabs/__init__.py +9 -6
- awslabs/cfn_mcp_server/__init__.py +9 -6
- awslabs/cfn_mcp_server/aws_client.py +9 -6
- awslabs/cfn_mcp_server/cloud_control_utils.py +9 -6
- awslabs/cfn_mcp_server/context.py +14 -0
- awslabs/cfn_mcp_server/errors.py +9 -6
- awslabs/cfn_mcp_server/iac_generator.py +9 -6
- awslabs/cfn_mcp_server/schema_manager.py +9 -6
- awslabs/cfn_mcp_server/server.py +9 -6
- {awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/METADATA +18 -5
- awslabs_cfn_mcp_server-1.0.6.dist-info/RECORD +15 -0
- awslabs_cfn_mcp_server-1.0.4.dist-info/RECORD +0 -15
- {awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/WHEEL +0 -0
- {awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/entry_points.txt +0 -0
- {awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/licenses/LICENSE +0 -0
- {awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/licenses/NOTICE +0 -0
awslabs/__init__.py
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
# This file is part of the awslabs namespace.
|
|
13
16
|
# It is intentionally minimal to support PEP 420 namespace packages.
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""awslabs.cfn-mcp-server"""
|
|
13
16
|
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
import botocore.config
|
|
13
16
|
import sys
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
from awslabs.cfn_mcp_server.errors import ClientError
|
|
13
16
|
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from awslabs.cfn_mcp_server.errors import ServerError
|
|
2
16
|
|
|
3
17
|
|
awslabs/cfn_mcp_server/errors.py
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
|
|
13
16
|
def handle_aws_api_error(e: Exception) -> Exception:
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""CloudFormation IaC Generator tool implementation."""
|
|
13
16
|
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
import json
|
|
13
16
|
import os
|
awslabs/cfn_mcp_server/server.py
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""awslabs CFN MCP Server implementation."""
|
|
13
16
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.cfn-mcp-server
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for doing common cloudformation tasks and for managing your resources in your AWS account
|
|
5
5
|
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: docs, https://awslabs.github.io/mcp/servers/cfn-mcp-server/
|
|
@@ -24,7 +24,7 @@ Requires-Python: >=3.10
|
|
|
24
24
|
Requires-Dist: boto3>=1.34.0
|
|
25
25
|
Requires-Dist: botocore>=1.34.0
|
|
26
26
|
Requires-Dist: loguru>=0.7.0
|
|
27
|
-
Requires-Dist: mcp[cli]>=1.
|
|
27
|
+
Requires-Dist: mcp[cli]>=1.11.0
|
|
28
28
|
Requires-Dist: pydantic>=2.10.6
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
|
|
@@ -53,7 +53,11 @@ Model Context Protocol (MCP) server that enables LLMs to directly create and man
|
|
|
53
53
|
|
|
54
54
|
## Installation
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
| Cursor | VS Code |
|
|
57
|
+
|:------:|:-------:|
|
|
58
|
+
| [](https://cursor.com/install-mcp?name=awslabs.cfn-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuY2ZuLW1jcC1zZXJ2ZXJAbGF0ZXN0IiwiZW52Ijp7IkFXU19QUk9GSUxFIjoieW91ci1uYW1lZC1wcm9maWxlIn0sImRpc2FibGVkIjpmYWxzZSwiYXV0b0FwcHJvdmUiOltdfQ%3D%3D) | [](https://insiders.vscode.dev/redirect/mcp/install?name=CloudFormation%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.cfn-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22AWS_PROFILE%22%3A%22your-named-profile%22%7D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
|
|
59
|
+
|
|
60
|
+
Configure the MCP server in your MCP client configuration (e.g., for Amazon Q Developer CLI, edit `~/.aws/amazonq/mcp.json`):
|
|
57
61
|
|
|
58
62
|
```json
|
|
59
63
|
{
|
|
@@ -130,34 +134,42 @@ NOTE: Your credentials will need to be kept refreshed from your host
|
|
|
130
134
|
## Tools
|
|
131
135
|
|
|
132
136
|
### create_resource
|
|
137
|
+
|
|
133
138
|
Creates an AWS resource using the AWS Cloud Control API with a declarative approach.
|
|
134
139
|
**Example**: Create an S3 bucket with versioning and encryption enabled.
|
|
135
140
|
|
|
136
141
|
### get_resource
|
|
142
|
+
|
|
137
143
|
Gets details of a specific AWS resource using the AWS Cloud Control API.
|
|
138
144
|
**Example**: Get the configuration of an EC2 instance.
|
|
139
145
|
|
|
140
146
|
### update_resource
|
|
147
|
+
|
|
141
148
|
Updates an AWS resource using the AWS Cloud Control API with a declarative approach.
|
|
142
149
|
**Example**: Update an RDS instance's storage capacity.
|
|
143
150
|
|
|
144
151
|
### delete_resource
|
|
152
|
+
|
|
145
153
|
Deletes an AWS resource using the AWS Cloud Control API.
|
|
146
154
|
**Example**: Remove an unused NAT gateway.
|
|
147
155
|
|
|
148
156
|
### list_resources
|
|
157
|
+
|
|
149
158
|
Lists AWS resources of a specified type using AWS Cloud Control API.
|
|
150
159
|
**Example**: List all EC2 instances in a region.
|
|
151
160
|
|
|
152
161
|
### get_resource_schema_information
|
|
162
|
+
|
|
153
163
|
Get schema information for an AWS CloudFormation resource.
|
|
154
164
|
**Example**: Get the schema for AWS::S3::Bucket to understand all available properties.
|
|
155
165
|
|
|
156
166
|
### get_request_status
|
|
167
|
+
|
|
157
168
|
Get the status of a mutation that was initiated by create/update/delete resource.
|
|
158
169
|
**Example**: Give me the status of the last request I made.
|
|
159
170
|
|
|
160
|
-
###
|
|
171
|
+
### create_template
|
|
172
|
+
|
|
161
173
|
Create a Cloudformation template from created or listed resources.
|
|
162
174
|
**Example**: Create a YAML template for those resources.
|
|
163
175
|
|
|
@@ -177,7 +189,8 @@ Examples of how to use the AWS Infrastructure as Code MCP Server:
|
|
|
177
189
|
- "Create a template for all the resources we created and modified"
|
|
178
190
|
|
|
179
191
|
## Resource Type support
|
|
180
|
-
|
|
192
|
+
|
|
193
|
+
Resources which are supported by this MCP and the supported operations can be found [here](https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html)
|
|
181
194
|
|
|
182
195
|
## Security Considerations
|
|
183
196
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
+
awslabs/cfn_mcp_server/__init__.py,sha256=UVFyAMX0Igl13L8zK7uhYmoTVwkzH9BjiteNwMDA0jo,668
|
|
3
|
+
awslabs/cfn_mcp_server/aws_client.py,sha256=L8NzRVsFT7zuyFsnOXqyJyLM-JE5VQ_3MDlKOIOdtgo,2840
|
|
4
|
+
awslabs/cfn_mcp_server/cloud_control_utils.py,sha256=P-LXQc4PAOmimnva9DquI1WooxQj2Fl3rSqy9v0PmvY,3771
|
|
5
|
+
awslabs/cfn_mcp_server/context.py,sha256=5Uitekl1BfXDPVFS65qmESbrDKEz1tgGHuEC3tDWcO8,1393
|
|
6
|
+
awslabs/cfn_mcp_server/errors.py,sha256=w4fYUoxZj0rUlc_Kvj5w7N_wl2L_CgvOjnpIVlCcOFo,4538
|
|
7
|
+
awslabs/cfn_mcp_server/iac_generator.py,sha256=og3nzBhGum_ps2NjtruG5RehWeEtIMRN0bo9JdE4dTU,7938
|
|
8
|
+
awslabs/cfn_mcp_server/schema_manager.py,sha256=I6EigsAx8dbxRWNDZKz5r0piqiavTE2oKzDSQlwxHH0,6832
|
|
9
|
+
awslabs/cfn_mcp_server/server.py,sha256=GD3FBcMkQ7hgM53e4KvY5XcfGMcnAgHZ2XbKGoPY1_o,16854
|
|
10
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/METADATA,sha256=US2YI4AZ5GG0k7NbanlIWd7rslOmwjV313K7F1Jx-CM,9858
|
|
11
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/entry_points.txt,sha256=Hartc24s_fYgi3o2m2tBHahod0pqXYwpebQy2_tXL7s,78
|
|
13
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
14
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/licenses/NOTICE,sha256=bcw4NZAgn5eQZzrtuDiwOe23BRSm_JiRzn0gxBLDzlg,90
|
|
15
|
+
awslabs_cfn_mcp_server-1.0.6.dist-info/RECORD,,
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=47wJeKcStxEJwX7SVVV2pnAWYR8FxcaYoT3YTmZ5Plg,674
|
|
2
|
-
awslabs/cfn_mcp_server/__init__.py,sha256=83bE3XbvOF6sigHPxEk0J9k7lNU9bzTwoCLde-IKQNA,611
|
|
3
|
-
awslabs/cfn_mcp_server/aws_client.py,sha256=w0cwuQq7b34IUaABEwZYpEols1QoMjO2gd3T98K5FcE,2783
|
|
4
|
-
awslabs/cfn_mcp_server/cloud_control_utils.py,sha256=LI7gEcQlQuHxEjfIKYaKwgN0Yha336n7GazVBCyx_rI,3714
|
|
5
|
-
awslabs/cfn_mcp_server/context.py,sha256=YpJZPjyzHW7df9O-lyj2j8yuenZI-yPxLuVuyvmnAnE,777
|
|
6
|
-
awslabs/cfn_mcp_server/errors.py,sha256=0ADg9EesPyvjNZD-J89QLQ5OFcD6aSKDaMfW_4RQjfo,4481
|
|
7
|
-
awslabs/cfn_mcp_server/iac_generator.py,sha256=iTZ6tM92m430GHM60lH1qR5nlRdhSbx2m0_WTbkU1f8,7881
|
|
8
|
-
awslabs/cfn_mcp_server/schema_manager.py,sha256=7dw2W2hgdn1ODRU5PrUmOG9_rvnKUhGD51q8Wz4Ksks,6775
|
|
9
|
-
awslabs/cfn_mcp_server/server.py,sha256=TFadYC3k1fa0h42dZnhE07DBSgmOvyncGWvDwYWpQaw,16797
|
|
10
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/METADATA,sha256=IVY_ukqh5kV3rQVwLlVONnPA_eG5Cqkg9KgsGRLVXns,9121
|
|
11
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/entry_points.txt,sha256=Hartc24s_fYgi3o2m2tBHahod0pqXYwpebQy2_tXL7s,78
|
|
13
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
14
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/licenses/NOTICE,sha256=bcw4NZAgn5eQZzrtuDiwOe23BRSm_JiRzn0gxBLDzlg,90
|
|
15
|
-
awslabs_cfn_mcp_server-1.0.4.dist-info/RECORD,,
|
|
File without changes
|
{awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{awslabs_cfn_mcp_server-1.0.4.dist-info → awslabs_cfn_mcp_server-1.0.6.dist-info}/licenses/NOTICE
RENAMED
|
File without changes
|