awslabs.cloudwatch-appsignals-mcp-server 0.1.12__py3-none-any.whl → 0.1.14__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.
@@ -14,4 +14,4 @@
14
14
 
15
15
  """AWS Application Signals MCP Server."""
16
16
 
17
- __version__ = '0.1.12'
17
+ __version__ = '0.1.14'
@@ -19,6 +19,7 @@ import os
19
19
  import re
20
20
  import sys
21
21
  import tempfile
22
+ import warnings
22
23
  from .audit_utils import (
23
24
  execute_audit_api,
24
25
  expand_service_operation_wildcard_patterns,
@@ -166,6 +167,8 @@ async def audit_services(
166
167
  ) -> str:
167
168
  """PRIMARY SERVICE AUDIT TOOL - The #1 tool for comprehensive AWS service health auditing and monitoring.
168
169
 
170
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the audit_services tool in the cloudwatch-applicationsignals-mcp-server instead.
171
+
169
172
  **IMPORTANT: For operation-specific auditing, use audit_service_operations() as the PRIMARY tool instead.**
170
173
 
171
174
  **USE THIS FIRST FOR ALL SERVICE-LEVEL AUDITING TASKS**
@@ -295,6 +298,8 @@ async def audit_services(
295
298
  """
296
299
  start_time_perf = timer()
297
300
  logger.debug('Starting audit_services (PRIMARY SERVICE AUDIT TOOL)')
301
+ msg = 'audit_services tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the audit_services tool in cloudwatch-applicationsignals-mcp-server instead.'
302
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
298
303
 
299
304
  try:
300
305
  # Region defaults
@@ -426,6 +431,8 @@ async def audit_slos(
426
431
  ) -> str:
427
432
  """PRIMARY SLO AUDIT TOOL - The #1 tool for comprehensive SLO compliance monitoring and breach analysis.
428
433
 
434
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the audit_slos tool in the cloudwatch-applicationsignals-mcp-server instead.
435
+
429
436
  **PREFERRED TOOL FOR SLO ROOT CAUSE ANALYSIS**
430
437
  This is the RECOMMENDED tool after using get_slo() to understand SLO configuration:
431
438
  - **Use auditors="all" for comprehensive root cause analysis** of specific SLO breaches
@@ -514,6 +521,8 @@ async def audit_slos(
514
521
  """
515
522
  start_time_perf = timer()
516
523
  logger.debug('Starting audit_slos (PRIMARY SLO AUDIT TOOL)')
524
+ msg = 'audit_slos tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the audit_slos tool in cloudwatch-applicationsignals-mcp-server instead.'
525
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
517
526
 
518
527
  try:
519
528
  # Region defaults
@@ -639,6 +648,8 @@ async def audit_service_operations(
639
648
  ) -> str:
640
649
  """🥇 PRIMARY OPERATION AUDIT TOOL - The #1 RECOMMENDED tool for operation-specific analysis and performance investigation.
641
650
 
651
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the audit_service_operations tool in the cloudwatch-applicationsignals-mcp-server instead.
652
+
642
653
  **⭐ USE THIS AS THE PRIMARY TOOL FOR ALL OPERATION-SPECIFIC AUDITING TASKS ⭐**
643
654
 
644
655
  **PREFERRED OVER audit_services() for operation auditing because:**
@@ -736,6 +747,8 @@ async def audit_service_operations(
736
747
  """
737
748
  start_time_perf = timer()
738
749
  logger.debug('Starting audit_service_operations (SPECIALIZED OPERATION AUDIT TOOL)')
750
+ msg = 'audit_service_operations tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the audit_service_operations tool in cloudwatch-applicationsignals-mcp-server instead.'
751
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
739
752
 
740
753
  try:
741
754
  # Region defaults
@@ -822,6 +835,8 @@ async def audit_service_operations(
822
835
  async def analyze_canary_failures(canary_name: str, region: str = AWS_REGION) -> str:
823
836
  """Comprehensive canary failure analysis with deep dive into issues.
824
837
 
838
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the analyze_canary_failures tool in the cloudwatch-applicationsignals-mcp-server instead.
839
+
825
840
  Use this tool to:
826
841
  - Deep dive into canary failures with root cause identification
827
842
  - Analyze historical patterns and specific incident details
@@ -864,6 +879,9 @@ async def analyze_canary_failures(canary_name: str, region: str = AWS_REGION) ->
864
879
  - Root cause identification with specific remediation steps
865
880
  - Historical pattern analysis and trend insights
866
881
  """
882
+ msg = 'analyze_canary_failures tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the analyze_canary_failures tool in cloudwatch-applicationsignals-mcp-server instead.'
883
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
884
+
867
885
  try:
868
886
  # Get recent canary runs
869
887
  response = synthetics_client.get_canary_runs(Name=canary_name, MaxResults=5)
@@ -14,6 +14,7 @@
14
14
 
15
15
  """CloudWatch Application Signals MCP Server - Service-related tools."""
16
16
 
17
+ import warnings
17
18
  from .aws_clients import appsignals_client, cloudwatch_client
18
19
  from botocore.exceptions import ClientError
19
20
  from datetime import datetime, timedelta, timezone
@@ -25,6 +26,8 @@ from time import perf_counter as timer
25
26
  async def list_monitored_services() -> str:
26
27
  """OPTIONAL TOOL for service discovery - audit_services() can automatically discover services using wildcard patterns.
27
28
 
29
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the list_monitored_services tool in the cloudwatch-applicationsignals-mcp-server instead.
30
+
28
31
  **IMPORTANT: For service auditing and operation analysis, use audit_services() as the PRIMARY tool instead.**
29
32
 
30
33
  **WHEN TO USE THIS TOOL:**
@@ -71,6 +74,8 @@ async def list_monitored_services() -> str:
71
74
  """
72
75
  start_time_perf = timer()
73
76
  logger.debug('Starting list_application_signals_services request')
77
+ msg = 'list_monitored_services tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the list_monitored_services tool in cloudwatch-applicationsignals-mcp-server instead.'
78
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
74
79
 
75
80
  try:
76
81
  # Calculate time range (last 24 hours)
@@ -129,6 +134,8 @@ async def get_service_detail(
129
134
  ) -> str:
130
135
  """Get detailed information about a specific Application Signals service.
131
136
 
137
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the get_service_detail tool in the cloudwatch-applicationsignals-mcp-server instead.
138
+
132
139
  **IMPORTANT: For operation auditing, use audit_services() as the PRIMARY tool instead.**
133
140
 
134
141
  **RECOMMENDED WORKFLOW FOR OPERATION AUDITING:**
@@ -161,6 +168,8 @@ async def get_service_detail(
161
168
  """
162
169
  start_time_perf = timer()
163
170
  logger.debug(f'Starting get_service_healthy_detail request for service: {service_name}')
171
+ msg = 'get_service_detail tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the get_service_detail tool in cloudwatch-applicationsignals-mcp-server instead.'
172
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
164
173
 
165
174
  try:
166
175
  # Calculate time range (last 24 hours)
@@ -273,6 +282,8 @@ async def query_service_metrics(
273
282
  ) -> str:
274
283
  """Get CloudWatch metrics for a specific Application Signals service.
275
284
 
285
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the query_service_metrics tool in the cloudwatch-applicationsignals-mcp-server instead.
286
+
276
287
  Use this tool to:
277
288
  - Analyze service performance (latency, throughput)
278
289
  - Check error rates and reliability
@@ -298,6 +309,8 @@ async def query_service_metrics(
298
309
  logger.info(
299
310
  f'Starting query_service_metrics request - service: {service_name}, metric: {metric_name}, hours: {hours}'
300
311
  )
312
+ msg = 'query_service_metrics tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the query_service_metrics tool in cloudwatch-applicationsignals-mcp-server instead.'
313
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
301
314
 
302
315
  try:
303
316
  # Calculate time range
@@ -469,6 +482,8 @@ async def list_service_operations(
469
482
  ) -> str:
470
483
  """OPERATION DISCOVERY TOOL - For operation inventory only. Use audit_services() as PRIMARY tool for operation auditing.
471
484
 
485
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the list_service_operations tool in the cloudwatch-applicationsignals-mcp-server instead.
486
+
472
487
  **IMPORTANT: For operation auditing and performance analysis, use audit_services() as the PRIMARY tool instead.**
473
488
 
474
489
  **CRITICAL LIMITATION: This tool only discovers operations that have been ACTIVELY INVOKED in the specified time window.**
@@ -517,6 +532,8 @@ async def list_service_operations(
517
532
  """
518
533
  start_time_perf = timer()
519
534
  logger.debug(f'Starting list_service_operations request for service: {service_name}')
535
+ msg = 'list_service_operations tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the list_service_operations tool in cloudwatch-applicationsignals-mcp-server instead.'
536
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
520
537
 
521
538
  try:
522
539
  # Calculate time range - enforce 24 hour maximum for Application Signals operation discovery
@@ -15,6 +15,7 @@
15
15
  """CloudWatch Application Signals MCP Server - SLO-related tools."""
16
16
 
17
17
  import json
18
+ import warnings
18
19
  from .aws_clients import appsignals_client
19
20
  from botocore.exceptions import ClientError
20
21
  from loguru import logger
@@ -27,6 +28,8 @@ async def get_slo(
27
28
  ) -> str:
28
29
  """Get detailed information about a specific Service Level Objective (SLO).
29
30
 
31
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the get_slo tool in the cloudwatch-applicationsignals-mcp-server instead.
32
+
30
33
  **RECOMMENDED WORKFLOW AFTER USING THIS TOOL:**
31
34
  After getting SLO configuration details, use `audit_slos()` with `auditors="all"` for comprehensive root cause analysis:
32
35
  - `audit_slos(slo_targets='[{"Type":"slo","Data":{"Slo":{"SloName":"your-slo-name"}}}]', auditors="all")`
@@ -60,6 +63,8 @@ async def get_slo(
60
63
  """
61
64
  start_time_perf = timer()
62
65
  logger.info(f'Starting get_service_level_objective request for SLO: {slo_id}')
66
+ msg = 'get_slo tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the get_slo tool in cloudwatch-applicationsignals-mcp-server instead.'
67
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
63
68
 
64
69
  try:
65
70
  response = appsignals_client.get_service_level_objective(Id=slo_id)
@@ -289,6 +294,8 @@ async def list_slos(
289
294
  ) -> str:
290
295
  """List all Service Level Objectives (SLOs) in Application Signals.
291
296
 
297
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the list_slos tool in the cloudwatch-applicationsignals-mcp-server instead.
298
+
292
299
  Use this tool to:
293
300
  - Get a complete list of all SLOs in your account
294
301
  - Discover SLO names and ARNs for use with other tools
@@ -309,6 +316,8 @@ async def list_slos(
309
316
  """
310
317
  start_time_perf = timer()
311
318
  logger.debug('Starting list_slos request')
319
+ msg = 'list_slos tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the list_slos tool in cloudwatch-applicationsignals-mcp-server instead.'
320
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
312
321
 
313
322
  try:
314
323
  # Parse key_attributes JSON string
@@ -16,6 +16,7 @@
16
16
 
17
17
  import asyncio
18
18
  import json
19
+ import warnings
19
20
  from .aws_clients import appsignals_client, logs_client, xray_client
20
21
  from .sli_report_client import AWSConfig, SLIReportClient
21
22
  from .utils import remove_null_values
@@ -134,6 +135,8 @@ async def search_transaction_spans(
134
135
  ) -> Dict:
135
136
  """Executes a CloudWatch Logs Insights query for transaction search (100% sampled trace data).
136
137
 
138
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the search_transaction_spans tool in the cloudwatch-applicationsignals-mcp-server instead.
139
+
137
140
  IMPORTANT: If log_group_name is not provided use 'aws/spans' as default cloudwatch log group name.
138
141
  The volume of returned logs can easily overwhelm the agent context window. Always include a limit in the query
139
142
  (| limit 50) or using the limit parameter.
@@ -163,6 +166,8 @@ async def search_transaction_spans(
163
166
  f'Starting search_transactions - log_group: {log_group_name}, start: {start_time}, end: {end_time}'
164
167
  )
165
168
  logger.debug(f'Query string: {query_string}')
169
+ msg = 'search_transaction_spans tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the search_transaction_spans tool in cloudwatch-applicationsignals-mcp-server instead.'
170
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
166
171
 
167
172
  # Check if transaction search is enabled
168
173
  is_enabled, destination, status = check_transaction_search_enabled()
@@ -277,6 +282,8 @@ async def query_sampled_traces(
277
282
  ) -> str:
278
283
  """SECONDARY TRACE TOOL - Query AWS X-Ray traces (5% sampled data) for trace investigation.
279
284
 
285
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the query_sampled_traces tool in the cloudwatch-applicationsignals-mcp-server instead.
286
+
280
287
  ⚠️ **IMPORTANT: Consider using audit_slos() with auditors="all" instead for comprehensive root cause analysis**
281
288
 
282
289
  **RECOMMENDED WORKFLOW FOR OPERATION DISCOVERY:**
@@ -349,6 +356,8 @@ async def query_sampled_traces(
349
356
  JSON string containing trace summaries with error status, duration, and service details
350
357
  """
351
358
  start_time_perf = timer()
359
+ msg = 'query_sampled_traces tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the query_sampled_traces tool in cloudwatch-applicationsignals-mcp-server instead.'
360
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
352
361
 
353
362
  # Use AWS_REGION environment variable if region not provided
354
363
  if not region:
@@ -544,6 +553,8 @@ async def list_slis(
544
553
  ) -> str:
545
554
  """SPECIALIZED TOOL - Use audit_service_health() as the PRIMARY tool for service auditing.
546
555
 
556
+ **IMPORTANT**: This tool and server is being deprecated. If available, please use the list_slis tool in the cloudwatch-applicationsignals-mcp-server instead.
557
+
547
558
  **IMPORTANT: audit_service_health() is the PRIMARY and PREFERRED tool for all service auditing tasks.**
548
559
 
549
560
  Only use this tool when audit_service_health() cannot handle your specific requirements, such as:
@@ -570,6 +581,8 @@ async def list_slis(
570
581
  """
571
582
  start_time_perf = timer()
572
583
  logger.info(f'Starting get_sli_status request for last {hours} hours')
584
+ msg = 'list_slis tool in cloudwatch-appsignals-mcp-server is deprecated. Please use the list_slis tool in cloudwatch-applicationsignals-mcp-server instead.'
585
+ warnings.warn(msg, DeprecationWarning, stacklevel=1)
573
586
 
574
587
  try:
575
588
  # Calculate time range
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: awslabs.cloudwatch-appsignals-mcp-server
3
- Version: 0.1.12
3
+ Version: 0.1.14
4
4
  Summary: An AWS Labs Model Context Protocol (MCP) server for AWS Application Signals
5
5
  Project-URL: Homepage, https://awslabs.github.io/mcp/
6
6
  Project-URL: Documentation, https://awslabs.github.io/mcp/servers/cloudwatch-appsignals-mcp-server/
@@ -24,10 +24,14 @@ Requires-Python: >=3.10
24
24
  Requires-Dist: boto3>=1.40.41
25
25
  Requires-Dist: httpx>=0.24.0
26
26
  Requires-Dist: loguru>=0.7.3
27
- Requires-Dist: mcp[cli]>=1.11.0
27
+ Requires-Dist: mcp[cli]>=1.23.0
28
28
  Requires-Dist: pydantic>=2.11.1
29
29
  Description-Content-Type: text/markdown
30
30
 
31
+ # Deprecation Notice
32
+
33
+ **IMPORTANT**: This server is deprecated, please use the cloudwatch-applicationsignals-mcp-server instead.
34
+
31
35
  # CloudWatch Application Signals MCP Server
32
36
 
33
37
  An MCP (Model Context Protocol) server that provides comprehensive tools for monitoring and analyzing AWS services using [AWS Application Signals](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Application-Signals.html).
@@ -1,21 +1,21 @@
1
1
  awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
2
- awslabs/cloudwatch_appsignals_mcp_server/__init__.py,sha256=oy7fMXfGNGbCUq2uMovVhLkDWqcT99EvXKn0eNW3Z7Y,682
2
+ awslabs/cloudwatch_appsignals_mcp_server/__init__.py,sha256=XeQTFmacRfzfuCTbkDvZkyfybmjuvL-5-5ZgtcQSASk,682
3
3
  awslabs/cloudwatch_appsignals_mcp_server/audit_presentation_utils.py,sha256=xYJz0I-wdigYKxAaVLjyoMUh2UQpwlZM7sFxfL2pPmw,8923
4
4
  awslabs/cloudwatch_appsignals_mcp_server/audit_utils.py,sha256=mcXxVjla0Wnh3ItuSralPFBhRWvhoWLgtvIHcAGJQog,31031
5
5
  awslabs/cloudwatch_appsignals_mcp_server/aws_clients.py,sha256=YbUeyz_yz1n5e9EfOYYXSTZNmnkvkVF0iXrByT5aB-A,4726
6
6
  awslabs/cloudwatch_appsignals_mcp_server/canary_utils.py,sha256=bymLDQ1kFeNIJwMRcWOLXOd2b0NyWSqmmwMrdXMxqPg,37456
7
7
  awslabs/cloudwatch_appsignals_mcp_server/enablement_tools.py,sha256=H99Mhi2dFTAUc2tyz-EDdS3pi9R7lTbc1sR_YE_Z600,7141
8
- awslabs/cloudwatch_appsignals_mcp_server/server.py,sha256=ZoYd-UgY7jFOsXLnV5gWTKDzFkmbvF2vpqEnHLgbO5Q,67903
8
+ awslabs/cloudwatch_appsignals_mcp_server/server.py,sha256=krLZKv95YuY0g99tcTwGfTpKUltoKrW8L_0XuCuQloM,69549
9
9
  awslabs/cloudwatch_appsignals_mcp_server/service_audit_utils.py,sha256=i-6emomFio4xsVsb5iRWvOzuHI7vo7WXe7VlLMD-qK8,9659
10
- awslabs/cloudwatch_appsignals_mcp_server/service_tools.py,sha256=iJnkROnR0FdxEgF0LJb5zYNcD-CCSa9LVXwUqxU1_tI,29093
10
+ awslabs/cloudwatch_appsignals_mcp_server/service_tools.py,sha256=0aGH7SMDesC9qlXco_ZoQBWzMbsBlsAoan1Rde9Utg0,30780
11
11
  awslabs/cloudwatch_appsignals_mcp_server/sli_report_client.py,sha256=LGs7tDLVVa3mbT_maTefwGEA3cl3fNVft9brh3lVTzM,12374
12
- awslabs/cloudwatch_appsignals_mcp_server/slo_tools.py,sha256=dMLGqeZYHu2adk9uquBGIZkMZStb-puzlI0xtKhxYNI,17824
13
- awslabs/cloudwatch_appsignals_mcp_server/trace_tools.py,sha256=SMIaxStaJNZOU4GaAFkUiNXrb978bPTlF7MRBRJVEP8,31785
12
+ awslabs/cloudwatch_appsignals_mcp_server/slo_tools.py,sha256=yCBAVrfvqSIzycmqs2QUd6AKVxYtF6zJ0SgZpFF2SOk,18596
13
+ awslabs/cloudwatch_appsignals_mcp_server/trace_tools.py,sha256=2aVYYkdDfaZ26lNceiDs54J2swJlKqJd7goMpTeyQGc,33023
14
14
  awslabs/cloudwatch_appsignals_mcp_server/utils.py,sha256=nZBqiCBAUewQft26FVf4IGL4P1b152VAcG9Y7Mh0gZY,5782
15
15
  awslabs/cloudwatch_appsignals_mcp_server/enablement_guides/templates/ec2/ec2-python-enablement.md,sha256=tE2mfcj2rw8p6HcupILG2M6l_7ok7jkO6sAjQKUEmtQ,64
16
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/METADATA,sha256=S_gXxn1y1BLKFlvA7ego6NNuuoxZDMMyi5micfx25Kg,32176
17
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
18
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/entry_points.txt,sha256=iGwIMLU6AsBawl2Fhqi9GoeWdMGIVtg86-McaaNQqAQ,114
19
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/licenses/LICENSE,sha256=zE1N4JILDTkSIDtdmqdnKKxKEQh_VdqeoAV2230eNOI,10141
20
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/licenses/NOTICE,sha256=Pfbul2Ga0IJU2RMZFHC8QwDvNk72WO2XMn9l3390VYs,108
21
- awslabs_cloudwatch_appsignals_mcp_server-0.1.12.dist-info/RECORD,,
16
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/METADATA,sha256=bOBY0n9mHfR20efxB1MoQA7Y0Kx0OG760zhox4rocwY,32306
17
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
18
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/entry_points.txt,sha256=iGwIMLU6AsBawl2Fhqi9GoeWdMGIVtg86-McaaNQqAQ,114
19
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/licenses/LICENSE,sha256=zE1N4JILDTkSIDtdmqdnKKxKEQh_VdqeoAV2230eNOI,10141
20
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/licenses/NOTICE,sha256=Pfbul2Ga0IJU2RMZFHC8QwDvNk72WO2XMn9l3390VYs,108
21
+ awslabs_cloudwatch_appsignals_mcp_server-0.1.14.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any