awslabs.cdk-mcp-server 1.0.10__py3-none-any.whl → 1.0.12__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 CHANGED
@@ -11,3 +11,7 @@
11
11
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
+
15
+ # This file is part of the awslabs namespace.
16
+ # It is intentionally minimal to support PEP 420 namespace packages.
17
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
@@ -18,4 +18,4 @@ from awslabs.cdk_mcp_server.core.server import main, mcp
18
18
 
19
19
  __all__ = ['main', 'mcp']
20
20
 
21
- __version__ = '1.0.10'
21
+ __version__ = '1.0.12'
@@ -25,6 +25,20 @@ def generate_fallback_script(lambda_code_path: str, output_path: str) -> str:
25
25
  """Generate a standalone script for schema generation."""
26
26
  return f'''# pyright: ignore
27
27
  #!/usr/bin/env python3
28
+ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
29
+ #
30
+ # Licensed under the Apache License, Version 2.0 (the "License");
31
+ # you may not use this file except in compliance with the License.
32
+ # You may obtain a copy of the License at
33
+ #
34
+ # http://www.apache.org/licenses/LICENSE-2.0
35
+ #
36
+ # Unless required by applicable law or agreed to in writing, software
37
+ # distributed under the License is distributed on an "AS IS" BASIS,
38
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39
+ # See the License for the specific language governing permissions and
40
+ # limitations under the License.
41
+
28
42
  """
29
43
  Schema Generator for Bedrock Agent Action Groups
30
44
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.cdk-mcp-server
3
- Version: 1.0.10
3
+ Version: 1.0.12
4
4
  Summary: An AWS CDK MCP server that provides guidance on AWS Cloud Development Kit best practices, infrastructure as code patterns, and security compliance with CDK Nag. This server offers tools to validate infrastructure designs, explain CDK Nag rules, analyze suppressions, generate Bedrock Agent schemas, and discover Solutions Constructs patterns.
5
5
  Project-URL: Homepage, https://awslabs.github.io/mcp/
6
6
  Project-URL: Documentation, https://awslabs.github.io/mcp/servers/cdk-mcp-server/
@@ -170,11 +170,11 @@ graph TD
170
170
 
171
171
  ## Installation
172
172
 
173
- | Cursor | VS Code |
174
- |:------:|:-------:|
175
- | [![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en/install-mcp?name=awslabs.cdk-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuY2RrLW1jcC1zZXJ2ZXJAbGF0ZXN0IiwiZW52Ijp7IkZBU1RNQ1BfTE9HX0xFVkVMIjoiRVJST1IifSwiZGlzYWJsZWQiOmZhbHNlLCJhdXRvQXBwcm92ZSI6W119) | [![Install on VS Code](https://img.shields.io/badge/Install_on-VS_Code-FF9900?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=CDK%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.cdk-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22FASTMCP_LOG_LEVEL%22%3A%22ERROR%22%7D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
173
+ | Kiro | Cursor | VS Code |
174
+ |:----:|:------:|:-------:|
175
+ | [![Add to Kiro](https://kiro.dev/images/add-to-kiro.svg)](https://kiro.dev/launch/mcp/add?name=awslabs.cdk-mcp-server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.cdk-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22FASTMCP_LOG_LEVEL%22%3A%22ERROR%22%7D%7D) | [![Install MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en/install-mcp?name=awslabs.cdk-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuY2RrLW1jcC1zZXJ2ZXJAbGF0ZXN0IiwiZW52Ijp7IkZBU1RNQ1BfTE9HX0xFVkVMIjoiRVJST1IifSwiZGlzYWJsZWQiOmZhbHNlLCJhdXRvQXBwcm92ZSI6W119) | [![Install on VS Code](https://img.shields.io/badge/Install_on-VS_Code-FF9900?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=CDK%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.cdk-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22FASTMCP_LOG_LEVEL%22%3A%22ERROR%22%7D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
176
176
 
177
- Configure the MCP server in your MCP client configuration (e.g., for Amazon Q Developer CLI, edit `~/.aws/amazonq/mcp.json`):
177
+ Configure the MCP server in your MCP client configuration (e.g., for Kiro, edit `~/.kiro/settings/mcp.json`):
178
178
 
179
179
  ```json
180
180
  {
@@ -1,5 +1,5 @@
1
- awslabs/__init__.py,sha256=O4wlFva3THWmjfaXfJAwi29mxJSKIhM0jcebVfd3S5U,615
2
- awslabs/cdk_mcp_server/__init__.py,sha256=lDWAIzPw-GqIeVlKbnRHiBMYWXEGN53oYdGnh6cYeGA,806
1
+ awslabs/__init__.py,sha256=S-EDeDHGZzllMFhAeuJx_47fv85t2OUMOcsOisD5d_8,796
2
+ awslabs/cdk_mcp_server/__init__.py,sha256=yeX32Ynii0Vrg8JWMZkXM-T20NX5Sf-WkH_2OpIQWjc,806
3
3
  awslabs/cdk_mcp_server/server.py,sha256=vbJAWSVLFeUfgJUl1pHpMlSYlPLWg8ADIBkPPC8UJeA,750
4
4
  awslabs/cdk_mcp_server/core/__init__.py,sha256=lg06bz7GZihlkgphT08Jm5GLEjaXmw5Nu4CPAuLaMVY,662
5
5
  awslabs/cdk_mcp_server/core/resources.py,sha256=hdkQ8zHcur4ABkJxO0X7Uo-my8Ky3RXthYcrBqRdav0,13719
@@ -12,7 +12,7 @@ awslabs/cdk_mcp_server/data/construct_descriptions.py,sha256=VMqmqpdegct6XGJSPJe
12
12
  awslabs/cdk_mcp_server/data/genai_cdk_loader.py,sha256=OyG7fD_dWZL0HLmAgR0s4b8L8TPat8stEXiE8kZlcvI,21573
13
13
  awslabs/cdk_mcp_server/data/lambda_layer_parser.py,sha256=Ti4W5gjTB3WkxWSnIbGXKJnJs-MH7_kVW3pkuiMUtTM,8668
14
14
  awslabs/cdk_mcp_server/data/lambda_powertools_loader.py,sha256=nqCw4LzyK3_gIOsf1WoZXcL6_GnSlRDGMdRtdP3sWSk,2468
15
- awslabs/cdk_mcp_server/data/schema_generator.py,sha256=xNul0eZq4aG_CRTNYQtLLJn22Df5lsUIAIrBteKn6NU,29326
15
+ awslabs/cdk_mcp_server/data/schema_generator.py,sha256=_MoMt146mZhCJCLZG5gSwbg38E5WwWpcmEt5B-TtmKk,29942
16
16
  awslabs/cdk_mcp_server/data/solutions_constructs_parser.py,sha256=eWBf0HQn5x4cGqYZTXf8kwVcTQSgXgB2gf4ZTXWLmqs,32323
17
17
  awslabs/cdk_mcp_server/static/CDK_GENERAL_GUIDANCE.md,sha256=-O0LIpmeDXr1JoVxxbQnVp0oNqvSbX20xOgcZqknr_c,8532
18
18
  awslabs/cdk_mcp_server/static/CDK_NAG_GUIDANCE.md,sha256=zJtHJp9ruaaJ-xa68k9kDrPmEaXpiWCZZf7JIy8NK0w,5839
@@ -25,9 +25,9 @@ awslabs/cdk_mcp_server/static/lambda_powertools/insights.md,sha256=jcyOHZvKHk2Cg
25
25
  awslabs/cdk_mcp_server/static/lambda_powertools/logging.md,sha256=6CSgD8QB3Bs4s_x4RnbKwZoWvG6aG4etCnmDH6HU9XY,1797
26
26
  awslabs/cdk_mcp_server/static/lambda_powertools/metrics.md,sha256=DQlznxRizJep8jphzFgbk7crH5LwWjSjdygP-1K6mxk,2559
27
27
  awslabs/cdk_mcp_server/static/lambda_powertools/tracing.md,sha256=Q3dSCvgktb9sUsuuQ5ONU2Qdb1OTwbNOYpK--MDzBNw,2539
28
- awslabs_cdk_mcp_server-1.0.10.dist-info/METADATA,sha256=_PizGDKwoc_zzZw3DTsKf3rjqyOKJ29kKKHNtYBpt1Q,10702
29
- awslabs_cdk_mcp_server-1.0.10.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
30
- awslabs_cdk_mcp_server-1.0.10.dist-info/entry_points.txt,sha256=LertzmID_mUU1YYZPySAF1IY1zE7ySTvzFxiGyo3VjY,78
31
- awslabs_cdk_mcp_server-1.0.10.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
32
- awslabs_cdk_mcp_server-1.0.10.dist-info/licenses/NOTICE,sha256=MNXNmhkltaxAzlo-r5BhjfS30nUE7I_w7cyDY8cxDL0,90
33
- awslabs_cdk_mcp_server-1.0.10.dist-info/RECORD,,
28
+ awslabs_cdk_mcp_server-1.0.12.dist-info/METADATA,sha256=yry9phYBLuErQUjP9e3eHsFgxACKXbI9DJHZ7YsAzlQ,10977
29
+ awslabs_cdk_mcp_server-1.0.12.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
30
+ awslabs_cdk_mcp_server-1.0.12.dist-info/entry_points.txt,sha256=LertzmID_mUU1YYZPySAF1IY1zE7ySTvzFxiGyo3VjY,78
31
+ awslabs_cdk_mcp_server-1.0.12.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
32
+ awslabs_cdk_mcp_server-1.0.12.dist-info/licenses/NOTICE,sha256=MNXNmhkltaxAzlo-r5BhjfS30nUE7I_w7cyDY8cxDL0,90
33
+ awslabs_cdk_mcp_server-1.0.12.dist-info/RECORD,,