awslabs.eks-mcp-server 0.1.16__py3-none-any.whl → 0.1.18__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 +1 -0
- awslabs/eks_mcp_server/__init__.py +1 -1
- awslabs/eks_mcp_server/cloudwatch_handler.py +42 -54
- awslabs/eks_mcp_server/cloudwatch_metrics_guidance_handler.py +15 -10
- awslabs/eks_mcp_server/eks_kb_handler.py +22 -4
- awslabs/eks_mcp_server/eks_stack_handler.py +97 -122
- awslabs/eks_mcp_server/iam_handler.py +36 -36
- awslabs/eks_mcp_server/insights_handler.py +29 -32
- awslabs/eks_mcp_server/k8s_handler.py +125 -145
- awslabs/eks_mcp_server/models.py +52 -62
- awslabs/eks_mcp_server/vpc_config_handler.py +18 -35
- {awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/METADATA +2 -2
- awslabs_eks_mcp_server-0.1.18.dist-info/RECORD +28 -0
- {awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/WHEEL +1 -1
- awslabs_eks_mcp_server-0.1.16.dist-info/RECORD +0 -28
- {awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/entry_points.txt +0 -0
- {awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/licenses/LICENSE +0 -0
- {awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/licenses/NOTICE +0 -0
awslabs/eks_mcp_server/models.py
CHANGED
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"""Data models for the EKS MCP Server."""
|
|
16
16
|
|
|
17
17
|
from enum import Enum
|
|
18
|
-
from mcp.types import CallToolResult
|
|
19
18
|
from pydantic import BaseModel, Field
|
|
20
19
|
from typing import Any, Dict, List, Optional, Union
|
|
21
20
|
|
|
@@ -54,8 +53,8 @@ class Operation(str, Enum):
|
|
|
54
53
|
READ = 'read'
|
|
55
54
|
|
|
56
55
|
|
|
57
|
-
class
|
|
58
|
-
"""
|
|
56
|
+
class ApplyYamlData(BaseModel):
|
|
57
|
+
"""Data model for apply_yaml response."""
|
|
59
58
|
|
|
60
59
|
force_applied: bool = Field(
|
|
61
60
|
False, description='Whether force option was used to update existing resources'
|
|
@@ -64,8 +63,8 @@ class ApplyYamlResponse(CallToolResult):
|
|
|
64
63
|
resources_updated: int = Field(0, description='Number of resources updated (when force=True)')
|
|
65
64
|
|
|
66
65
|
|
|
67
|
-
class
|
|
68
|
-
"""
|
|
66
|
+
class KubernetesResourceData(BaseModel):
|
|
67
|
+
"""Data model for single Kubernetes resource operations."""
|
|
69
68
|
|
|
70
69
|
kind: str = Field(..., description='Kind of the Kubernetes resource')
|
|
71
70
|
name: str = Field(..., description='Name of the Kubernetes resource')
|
|
@@ -89,8 +88,8 @@ class ResourceSummary(BaseModel):
|
|
|
89
88
|
annotations: Optional[Dict[str, str]] = Field(None, description='Resource annotations')
|
|
90
89
|
|
|
91
90
|
|
|
92
|
-
class
|
|
93
|
-
"""
|
|
91
|
+
class KubernetesResourceListData(BaseModel):
|
|
92
|
+
"""Data model for list_resources response."""
|
|
94
93
|
|
|
95
94
|
kind: str = Field(..., description='Kind of the Kubernetes resources')
|
|
96
95
|
api_version: str = Field(..., description='API version of the Kubernetes resources')
|
|
@@ -99,22 +98,22 @@ class KubernetesResourceListResponse(CallToolResult):
|
|
|
99
98
|
items: List[ResourceSummary] = Field(..., description='List of resources')
|
|
100
99
|
|
|
101
100
|
|
|
102
|
-
class
|
|
103
|
-
"""
|
|
101
|
+
class ApiVersionsData(BaseModel):
|
|
102
|
+
"""Data model for list_api_versions response."""
|
|
104
103
|
|
|
105
104
|
cluster_name: str = Field(..., description='Name of the EKS cluster')
|
|
106
105
|
api_versions: List[str] = Field(..., description='List of available API versions')
|
|
107
106
|
count: int = Field(..., description='Number of API versions')
|
|
108
107
|
|
|
109
108
|
|
|
110
|
-
class
|
|
111
|
-
"""
|
|
109
|
+
class GenerateAppManifestData(BaseModel):
|
|
110
|
+
"""Data model for generate_app_manifest response."""
|
|
112
111
|
|
|
113
112
|
output_file_path: str = Field(..., description='Path to the output manifest file')
|
|
114
113
|
|
|
115
114
|
|
|
116
|
-
class
|
|
117
|
-
"""
|
|
115
|
+
class PodLogsData(BaseModel):
|
|
116
|
+
"""Data model for get_pod_logs response."""
|
|
118
117
|
|
|
119
118
|
pod_name: str = Field(..., description='Name of the pod')
|
|
120
119
|
namespace: str = Field(..., description='Namespace of the pod')
|
|
@@ -122,8 +121,8 @@ class PodLogsResponse(CallToolResult):
|
|
|
122
121
|
log_lines: List[str] = Field(..., description='Pod log lines')
|
|
123
122
|
|
|
124
123
|
|
|
125
|
-
class
|
|
126
|
-
"""
|
|
124
|
+
class EventsData(BaseModel):
|
|
125
|
+
"""Data model for get_k8s_events response."""
|
|
127
126
|
|
|
128
127
|
involved_object_kind: str = Field(..., description='Kind of the involved object')
|
|
129
128
|
involved_object_name: str = Field(..., description='Name of the involved object')
|
|
@@ -145,10 +144,10 @@ class CloudWatchLogEntry(BaseModel):
|
|
|
145
144
|
message: str = Field(..., description='Log message content')
|
|
146
145
|
|
|
147
146
|
|
|
148
|
-
class
|
|
149
|
-
"""
|
|
147
|
+
class CloudWatchLogsData(BaseModel):
|
|
148
|
+
"""Data model for CloudWatch logs response.
|
|
150
149
|
|
|
151
|
-
This model contains the
|
|
150
|
+
This model contains the structured data from a CloudWatch logs query,
|
|
152
151
|
including resource information, time range, and log entries.
|
|
153
152
|
"""
|
|
154
153
|
|
|
@@ -177,10 +176,10 @@ class CloudWatchDataPoint(BaseModel):
|
|
|
177
176
|
value: float = Field(..., description='Metric value')
|
|
178
177
|
|
|
179
178
|
|
|
180
|
-
class
|
|
181
|
-
"""
|
|
179
|
+
class CloudWatchMetricsData(BaseModel):
|
|
180
|
+
"""Data model for CloudWatch metrics response.
|
|
182
181
|
|
|
183
|
-
This model contains the
|
|
182
|
+
This model contains the structured data from a CloudWatch metrics query,
|
|
184
183
|
including metric details, time range, and data points.
|
|
185
184
|
"""
|
|
186
185
|
|
|
@@ -205,41 +204,32 @@ class StackSummary(BaseModel):
|
|
|
205
204
|
description: Optional[str] = Field(None, description='Description of the stack')
|
|
206
205
|
|
|
207
206
|
|
|
208
|
-
class
|
|
209
|
-
"""
|
|
207
|
+
class ManageEksStacksData(BaseModel):
|
|
208
|
+
"""Data model for manage_eks_stacks response."""
|
|
210
209
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
class DeployStackResponse(CallToolResult):
|
|
216
|
-
"""Response model for deploy operation of manage_eks_stacks tool."""
|
|
217
|
-
|
|
218
|
-
stack_name: str = Field(..., description='Name of the CloudFormation stack')
|
|
219
|
-
stack_arn: str = Field(..., description='ARN of the CloudFormation stack')
|
|
220
|
-
cluster_name: str = Field(..., description='Name of the EKS cluster')
|
|
221
|
-
content: list = Field(..., description='Content blocks for the response')
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
class DescribeStackResponse(CallToolResult):
|
|
225
|
-
"""Response model for describe operation of manage_eks_stacks tool."""
|
|
210
|
+
operation: str = Field(
|
|
211
|
+
..., description='Operation performed (generate, deploy, describe, delete)'
|
|
212
|
+
)
|
|
226
213
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
stack_status: str = Field(..., description='Current status of the stack')
|
|
232
|
-
outputs: Dict[str, str] = Field(..., description='Stack outputs')
|
|
233
|
-
content: list = Field(..., description='Content blocks for the response')
|
|
214
|
+
# Fields for generate operation
|
|
215
|
+
template_path: str = Field(
|
|
216
|
+
'', description='Path to the generated template (generate operation)'
|
|
217
|
+
)
|
|
234
218
|
|
|
219
|
+
# Fields for deploy operation
|
|
220
|
+
stack_arn: str = Field('', description='ARN of the CloudFormation stack (deploy operation)')
|
|
235
221
|
|
|
236
|
-
|
|
237
|
-
|
|
222
|
+
# Fields for describe operation
|
|
223
|
+
creation_time: str = Field('', description='Creation time of the stack (describe operation)')
|
|
224
|
+
stack_status: str = Field('', description='Current status of the stack (describe operation)')
|
|
225
|
+
outputs: Dict[str, str] = Field(
|
|
226
|
+
default_factory=dict, description='Stack outputs (describe operation)'
|
|
227
|
+
)
|
|
238
228
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
229
|
+
# Common fields
|
|
230
|
+
stack_name: str = Field('', description='Name of the CloudFormation stack')
|
|
231
|
+
stack_id: str = Field('', description='ID of the CloudFormation stack')
|
|
232
|
+
cluster_name: str = Field('', description='Name of the EKS cluster')
|
|
243
233
|
|
|
244
234
|
|
|
245
235
|
class PolicySummary(BaseModel):
|
|
@@ -250,8 +240,8 @@ class PolicySummary(BaseModel):
|
|
|
250
240
|
policy_document: Optional[Dict[str, Any]] = Field(None, description='Policy document')
|
|
251
241
|
|
|
252
242
|
|
|
253
|
-
class
|
|
254
|
-
"""
|
|
243
|
+
class RoleDescriptionData(BaseModel):
|
|
244
|
+
"""Data model for get_policies_for_role response."""
|
|
255
245
|
|
|
256
246
|
role_arn: str = Field(..., description='ARN of the IAM role')
|
|
257
247
|
assume_role_policy_document: Dict[str, Any] = Field(
|
|
@@ -266,8 +256,8 @@ class RoleDescriptionResponse(CallToolResult):
|
|
|
266
256
|
)
|
|
267
257
|
|
|
268
258
|
|
|
269
|
-
class
|
|
270
|
-
"""
|
|
259
|
+
class AddInlinePolicyData(BaseModel):
|
|
260
|
+
"""Data model for add_inline_policy response."""
|
|
271
261
|
|
|
272
262
|
policy_name: str = Field(..., description='Name of the inline policy to create')
|
|
273
263
|
role_name: str = Field(..., description='Name of the role to add the policy to')
|
|
@@ -276,10 +266,10 @@ class AddInlinePolicyResponse(CallToolResult):
|
|
|
276
266
|
)
|
|
277
267
|
|
|
278
268
|
|
|
279
|
-
class
|
|
280
|
-
"""
|
|
269
|
+
class MetricsGuidanceData(BaseModel):
|
|
270
|
+
"""Data model for get_eks_metrics_guidance response.
|
|
281
271
|
|
|
282
|
-
This model contains the
|
|
272
|
+
This model contains the structured data from a metrics guidance query,
|
|
283
273
|
including resource type and available metrics with their details.
|
|
284
274
|
"""
|
|
285
275
|
|
|
@@ -289,8 +279,8 @@ class MetricsGuidanceResponse(CallToolResult):
|
|
|
289
279
|
metrics: List[Dict[str, Any]] = Field(..., description='List of metrics with their details')
|
|
290
280
|
|
|
291
281
|
|
|
292
|
-
class
|
|
293
|
-
"""
|
|
282
|
+
class EksVpcConfigData(BaseModel):
|
|
283
|
+
"""Data model for get_eks_vpc_config response.
|
|
294
284
|
|
|
295
285
|
This model contains comprehensive VPC configuration details for any EKS cluster,
|
|
296
286
|
including CIDR blocks and route tables which are essential for understanding
|
|
@@ -356,8 +346,8 @@ class EksInsightItem(BaseModel):
|
|
|
356
346
|
)
|
|
357
347
|
|
|
358
348
|
|
|
359
|
-
class
|
|
360
|
-
"""
|
|
349
|
+
class EksInsightsData(BaseModel):
|
|
350
|
+
"""Data model for get_eks_insights response."""
|
|
361
351
|
|
|
362
352
|
cluster_name: str = Field(..., description='Name of the EKS cluster')
|
|
363
353
|
insights: List[EksInsightItem] = Field(..., description='List of insights')
|
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
"""VPC Configuration handler for the EKS MCP Server."""
|
|
16
16
|
|
|
17
|
+
import json
|
|
17
18
|
from awslabs.eks_mcp_server.aws_helper import AwsHelper
|
|
18
19
|
from awslabs.eks_mcp_server.logging_helper import LogLevel, log_with_request_id
|
|
19
|
-
from awslabs.eks_mcp_server.models import
|
|
20
|
+
from awslabs.eks_mcp_server.models import EksVpcConfigData
|
|
20
21
|
from mcp.server.fastmcp import Context
|
|
21
|
-
from mcp.types import TextContent
|
|
22
|
+
from mcp.types import CallToolResult, TextContent
|
|
22
23
|
from pydantic import Field
|
|
23
24
|
from typing import Optional
|
|
24
25
|
|
|
@@ -45,7 +46,7 @@ class VpcConfigHandler:
|
|
|
45
46
|
self.allow_sensitive_data_access = allow_sensitive_data_access
|
|
46
47
|
|
|
47
48
|
# Register tools
|
|
48
|
-
self.mcp.tool(name='get_eks_vpc_config')(self.get_eks_vpc_config)
|
|
49
|
+
self.mcp.tool(name='get_eks_vpc_config', structured_output=False)(self.get_eks_vpc_config)
|
|
49
50
|
|
|
50
51
|
# Initialize AWS clients
|
|
51
52
|
self.ec2_client = AwsHelper.create_boto3_client('ec2')
|
|
@@ -63,7 +64,7 @@ class VpcConfigHandler:
|
|
|
63
64
|
None,
|
|
64
65
|
description='ID of the specific VPC to query (optional, will use cluster VPC if not specified)',
|
|
65
66
|
),
|
|
66
|
-
) ->
|
|
67
|
+
) -> CallToolResult:
|
|
67
68
|
"""Get VPC configuration for an EKS cluster.
|
|
68
69
|
|
|
69
70
|
This tool retrieves comprehensive VPC configuration details for any EKS cluster,
|
|
@@ -328,7 +329,7 @@ class VpcConfigHandler:
|
|
|
328
329
|
|
|
329
330
|
async def _get_eks_vpc_config_impl(
|
|
330
331
|
self, ctx: Context, cluster_name: str, vpc_id: Optional[str] = None
|
|
331
|
-
) ->
|
|
332
|
+
) -> CallToolResult:
|
|
332
333
|
"""Internal implementation of get_eks_vpc_config."""
|
|
333
334
|
try:
|
|
334
335
|
# Always get the cluster response for remote CIDR information
|
|
@@ -345,17 +346,9 @@ class VpcConfigHandler:
|
|
|
345
346
|
except Exception as eks_error:
|
|
346
347
|
error_message = f'Error getting cluster information: {str(eks_error)}'
|
|
347
348
|
log_with_request_id(ctx, LogLevel.ERROR, error_message)
|
|
348
|
-
return
|
|
349
|
+
return CallToolResult(
|
|
349
350
|
isError=True,
|
|
350
351
|
content=[TextContent(type='text', text=error_message)],
|
|
351
|
-
vpc_id='',
|
|
352
|
-
cidr_block='',
|
|
353
|
-
additional_cidr_blocks=[], # Add missing parameter
|
|
354
|
-
routes=[],
|
|
355
|
-
remote_node_cidr_blocks=[],
|
|
356
|
-
remote_pod_cidr_blocks=[],
|
|
357
|
-
subnets=[],
|
|
358
|
-
cluster_name=cluster_name,
|
|
359
352
|
)
|
|
360
353
|
|
|
361
354
|
try:
|
|
@@ -380,9 +373,7 @@ class VpcConfigHandler:
|
|
|
380
373
|
)
|
|
381
374
|
log_with_request_id(ctx, LogLevel.INFO, success_message)
|
|
382
375
|
|
|
383
|
-
|
|
384
|
-
isError=False,
|
|
385
|
-
content=[TextContent(type='text', text=success_message)],
|
|
376
|
+
data = EksVpcConfigData(
|
|
386
377
|
vpc_id=vpc_id,
|
|
387
378
|
cidr_block=cidr_block,
|
|
388
379
|
additional_cidr_blocks=additional_cidr_blocks,
|
|
@@ -392,34 +383,26 @@ class VpcConfigHandler:
|
|
|
392
383
|
subnets=subnets,
|
|
393
384
|
cluster_name=cluster_name,
|
|
394
385
|
)
|
|
386
|
+
|
|
387
|
+
return CallToolResult(
|
|
388
|
+
isError=False,
|
|
389
|
+
content=[
|
|
390
|
+
TextContent(type='text', text=success_message),
|
|
391
|
+
TextContent(type='text', text=json.dumps(data.model_dump())),
|
|
392
|
+
],
|
|
393
|
+
)
|
|
395
394
|
except Exception as e:
|
|
396
395
|
error_message = f'Error retrieving VPC configuration: {str(e)}'
|
|
397
396
|
log_with_request_id(ctx, LogLevel.ERROR, error_message)
|
|
398
|
-
return
|
|
397
|
+
return CallToolResult(
|
|
399
398
|
isError=True,
|
|
400
399
|
content=[TextContent(type='text', text=error_message)],
|
|
401
|
-
vpc_id='',
|
|
402
|
-
cidr_block='',
|
|
403
|
-
additional_cidr_blocks=[], # Add missing parameter
|
|
404
|
-
routes=[],
|
|
405
|
-
remote_node_cidr_blocks=[],
|
|
406
|
-
remote_pod_cidr_blocks=[],
|
|
407
|
-
subnets=[],
|
|
408
|
-
cluster_name=cluster_name,
|
|
409
400
|
)
|
|
410
401
|
|
|
411
402
|
except Exception as e:
|
|
412
403
|
error_message = f'Error retrieving VPC configuration: {str(e)}'
|
|
413
404
|
log_with_request_id(ctx, LogLevel.ERROR, error_message)
|
|
414
|
-
return
|
|
405
|
+
return CallToolResult(
|
|
415
406
|
isError=True,
|
|
416
407
|
content=[TextContent(type='text', text=error_message)],
|
|
417
|
-
vpc_id='',
|
|
418
|
-
cidr_block='',
|
|
419
|
-
additional_cidr_blocks=[], # Add missing parameter
|
|
420
|
-
routes=[],
|
|
421
|
-
remote_node_cidr_blocks=[],
|
|
422
|
-
remote_pod_cidr_blocks=[],
|
|
423
|
-
subnets=[],
|
|
424
|
-
cluster_name=cluster_name,
|
|
425
408
|
)
|
{awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.eks-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.18
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for EKS
|
|
5
5
|
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: docs, https://awslabs.github.io/mcp/servers/eks-mcp-server/
|
|
@@ -25,7 +25,7 @@ Requires-Dist: boto3>=1.34.0
|
|
|
25
25
|
Requires-Dist: cachetools>=5.3.0
|
|
26
26
|
Requires-Dist: kubernetes>=28.1.0
|
|
27
27
|
Requires-Dist: loguru>=0.7.0
|
|
28
|
-
Requires-Dist: mcp[cli]
|
|
28
|
+
Requires-Dist: mcp[cli]>=1.23.0
|
|
29
29
|
Requires-Dist: pydantic>=2.10.6
|
|
30
30
|
Requires-Dist: pyyaml>=6.0.0
|
|
31
31
|
Requires-Dist: requests-auth-aws-sigv4
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=S-EDeDHGZzllMFhAeuJx_47fv85t2OUMOcsOisD5d_8,796
|
|
2
|
+
awslabs/eks_mcp_server/__init__.py,sha256=XRAD_iD80EtOQmp39yp-tn1i64_Rj4pvCTM5Q1YSeSU,669
|
|
3
|
+
awslabs/eks_mcp_server/aws_helper.py,sha256=Is0BCVPjhO-AqKFF0MnGpzNRjAe8E896VGrKWCz4gfo,4031
|
|
4
|
+
awslabs/eks_mcp_server/cloudwatch_handler.py,sha256=xOSIKzJueIbD1eoONa5iCcuAV4QSb6FsCol0swSA2S0,28282
|
|
5
|
+
awslabs/eks_mcp_server/cloudwatch_metrics_guidance_handler.py,sha256=MeU8emcYOQqdMpvUwFfkLdkCekk3_cRAAwC5mz1li8Q,5380
|
|
6
|
+
awslabs/eks_mcp_server/consts.py,sha256=XBat-KcMckueQQpDeLkD_Nv_9G9kX0_d48sMEHtZ5HQ,1380
|
|
7
|
+
awslabs/eks_mcp_server/eks_kb_handler.py,sha256=qLTBYFMaUdtDJl2hjCatWjfo8Bb3P8IaUHwiULeQWcg,4076
|
|
8
|
+
awslabs/eks_mcp_server/eks_stack_handler.py,sha256=qJKM24VymfOPHzM21PregilqQFV5CVcyDKx0Ke4aLvg,25629
|
|
9
|
+
awslabs/eks_mcp_server/iam_handler.py,sha256=YywQATEuRxtZpSs12895kiXG3OtqvPP54urFZ3gLwpU,14624
|
|
10
|
+
awslabs/eks_mcp_server/insights_handler.py,sha256=qBJKwb27FLR_TAtkumJsl1TrJ13OtzHS3C7og9HVDJg,14119
|
|
11
|
+
awslabs/eks_mcp_server/k8s_apis.py,sha256=qyRmT8i390wp-L3gVYqmtGBt5HDELTvUFto7fsVKBio,21328
|
|
12
|
+
awslabs/eks_mcp_server/k8s_client_cache.py,sha256=vm-8VKC3zaCqpW9pOUmRDFulxzYCX8p8OvyOgtvh96o,5697
|
|
13
|
+
awslabs/eks_mcp_server/k8s_handler.py,sha256=5WF0YYnkB0NKw2da2g0fdPS3n7XGzRSBugGhJhKjRTs,48486
|
|
14
|
+
awslabs/eks_mcp_server/logging_helper.py,sha256=hr8xZhAZOKyR7dkwc7bhqkDVuSDI3BRK3-UzllQkWgE,1854
|
|
15
|
+
awslabs/eks_mcp_server/models.py,sha256=4fe_PDfu656VsCnucY5YB9bFoTMDHrwDPvwu4yazYCY,14758
|
|
16
|
+
awslabs/eks_mcp_server/server.py,sha256=VjbDh-Kh-3sMwb9NXXp6kYoL9RRa6ikq-JzHeQZ-7PA,6952
|
|
17
|
+
awslabs/eks_mcp_server/vpc_config_handler.py,sha256=K4fkN1UEvYn4uKpfcLwRgNwDrYElS9FPWzYYaCOHz44,16353
|
|
18
|
+
awslabs/eks_mcp_server/data/eks_cloudwatch_metrics_guidance.json,sha256=a4tzVdwpF_0kZGwOJCDEQskScp5rjRU89M7ONp3HpdA,9304
|
|
19
|
+
awslabs/eks_mcp_server/scripts/update_eks_cloudwatch_metrics_guidance.py,sha256=LA-owuNUulCTS-F4M-tJKqEcvAak4v7WnQaRB1GjbMU,10047
|
|
20
|
+
awslabs/eks_mcp_server/templates/eks-templates/eks-with-vpc.yaml,sha256=_Lxk2MEXNA7N0-kvXckxwBamDEagjGvC6-Z5uxhVO5s,10774
|
|
21
|
+
awslabs/eks_mcp_server/templates/k8s-templates/deployment.yaml,sha256=J2efYFISlT3sTvf8_BJV3p0_m51cltqiRhXdBXb9YJs,2343
|
|
22
|
+
awslabs/eks_mcp_server/templates/k8s-templates/service.yaml,sha256=DA0Db_5yjUZmnnYy5Bljcv3hj7D6YvFFWFRB6GiIstY,414
|
|
23
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/METADATA,sha256=Y5736e0Es8vots2a_YaU1lie5HZmX7SCK2ftEdg2c_M,31384
|
|
24
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
25
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/entry_points.txt,sha256=VydotfOJYck8o4TPsaF6Pjmc8Bp_doacYXSE_71qH4c,78
|
|
26
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
27
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/licenses/NOTICE,sha256=gnCtD34qTDnb2Lykm9kNFYkqZIvqJHGuq1ZJBkl6EgE,90
|
|
28
|
+
awslabs_eks_mcp_server-0.1.18.dist-info/RECORD,,
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=WuqxdDgUZylWNmVoPKiK7qGsTB_G4UmuXIrJ-VBwDew,731
|
|
2
|
-
awslabs/eks_mcp_server/__init__.py,sha256=u13S55S4XKCVmWmrF1NdMggJ-hljULgfrOvqwXYPEQ8,669
|
|
3
|
-
awslabs/eks_mcp_server/aws_helper.py,sha256=Is0BCVPjhO-AqKFF0MnGpzNRjAe8E896VGrKWCz4gfo,4031
|
|
4
|
-
awslabs/eks_mcp_server/cloudwatch_handler.py,sha256=k3GsORIFswOknxYM0reCBsCHXn--gSwl7WVtxkUTyzg,28853
|
|
5
|
-
awslabs/eks_mcp_server/cloudwatch_metrics_guidance_handler.py,sha256=b0fFMvsGX98HKK4kVFI1YbhZqZC623lZ6TNXs3EiRSI,5283
|
|
6
|
-
awslabs/eks_mcp_server/consts.py,sha256=XBat-KcMckueQQpDeLkD_Nv_9G9kX0_d48sMEHtZ5HQ,1380
|
|
7
|
-
awslabs/eks_mcp_server/eks_kb_handler.py,sha256=6L3wS500AadKburhwf0zXEapXscd4VZCTY8t61u-j1Y,3548
|
|
8
|
-
awslabs/eks_mcp_server/eks_stack_handler.py,sha256=p4Cbjcb7ga52hPo6-M1FFWhgIpuI0X4Hx024k4wxcwQ,27400
|
|
9
|
-
awslabs/eks_mcp_server/iam_handler.py,sha256=lXA4acsBJAy5IekgdJM_yVzaaztanrPSpqX84ttSlO0,14817
|
|
10
|
-
awslabs/eks_mcp_server/insights_handler.py,sha256=Tc-2UkNReALQ_5L36BqiufGwy-AKkvt_g0W5ORhc52M,14374
|
|
11
|
-
awslabs/eks_mcp_server/k8s_apis.py,sha256=qyRmT8i390wp-L3gVYqmtGBt5HDELTvUFto7fsVKBio,21328
|
|
12
|
-
awslabs/eks_mcp_server/k8s_client_cache.py,sha256=vm-8VKC3zaCqpW9pOUmRDFulxzYCX8p8OvyOgtvh96o,5697
|
|
13
|
-
awslabs/eks_mcp_server/k8s_handler.py,sha256=ztN5Tvf9cNNbSHxlgBua_o9-VsZH7YpVTw0ef4We3gE,49763
|
|
14
|
-
awslabs/eks_mcp_server/logging_helper.py,sha256=hr8xZhAZOKyR7dkwc7bhqkDVuSDI3BRK3-UzllQkWgE,1854
|
|
15
|
-
awslabs/eks_mcp_server/models.py,sha256=fMiuW2XYsrBA6eI8s1O0y_xN73Q-Q9yOf0xJmBsr-c8,15631
|
|
16
|
-
awslabs/eks_mcp_server/server.py,sha256=VjbDh-Kh-3sMwb9NXXp6kYoL9RRa6ikq-JzHeQZ-7PA,6952
|
|
17
|
-
awslabs/eks_mcp_server/vpc_config_handler.py,sha256=iWOK0kSFrgdFszxUHKVt4e0GFfSgphgJqsYVSREWbIM,17144
|
|
18
|
-
awslabs/eks_mcp_server/data/eks_cloudwatch_metrics_guidance.json,sha256=a4tzVdwpF_0kZGwOJCDEQskScp5rjRU89M7ONp3HpdA,9304
|
|
19
|
-
awslabs/eks_mcp_server/scripts/update_eks_cloudwatch_metrics_guidance.py,sha256=LA-owuNUulCTS-F4M-tJKqEcvAak4v7WnQaRB1GjbMU,10047
|
|
20
|
-
awslabs/eks_mcp_server/templates/eks-templates/eks-with-vpc.yaml,sha256=_Lxk2MEXNA7N0-kvXckxwBamDEagjGvC6-Z5uxhVO5s,10774
|
|
21
|
-
awslabs/eks_mcp_server/templates/k8s-templates/deployment.yaml,sha256=J2efYFISlT3sTvf8_BJV3p0_m51cltqiRhXdBXb9YJs,2343
|
|
22
|
-
awslabs/eks_mcp_server/templates/k8s-templates/service.yaml,sha256=DA0Db_5yjUZmnnYy5Bljcv3hj7D6YvFFWFRB6GiIstY,414
|
|
23
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/METADATA,sha256=Gl084pSw5Vu4dFgL8CSscWP0j66o_Dz9T1pGi0839rI,31393
|
|
24
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
25
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/entry_points.txt,sha256=VydotfOJYck8o4TPsaF6Pjmc8Bp_doacYXSE_71qH4c,78
|
|
26
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
27
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/licenses/NOTICE,sha256=gnCtD34qTDnb2Lykm9kNFYkqZIvqJHGuq1ZJBkl6EgE,90
|
|
28
|
-
awslabs_eks_mcp_server-0.1.16.dist-info/RECORD,,
|
{awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{awslabs_eks_mcp_server-0.1.16.dist-info → awslabs_eks_mcp_server-0.1.18.dist-info}/licenses/NOTICE
RENAMED
|
File without changes
|