Skip to content
403 changes: 118 additions & 285 deletions src/amazon-keyspaces-mcp-server/uv.lock

Large diffs are not rendered by default.

26 changes: 23 additions & 3 deletions src/aws-api-mcp-server/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

558 changes: 189 additions & 369 deletions src/aws-bedrock-custom-model-import-mcp-server/uv.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import sys
from fastmcp import FastMCP
from fastmcp.server.proxy import ProxyClient
from fastmcp.server.providers.proxy import ProxyClient
from fastmcp.tools import Tool
from loguru import logger
from typing import Any, Callable, Dict, Optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
)
from dataclasses import asdict
from fastmcp import FastMCP
from fastmcp.server.proxy import ProxyClient
from fastmcp.server.providers.proxy import ProxyClient
from loguru import logger
from typing import Optional

Expand Down
16 changes: 8 additions & 8 deletions src/aws-iac-mcp-server/tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@


# Access underlying functions from FastMCP decorated tools
validate_cloudformation_template = server.validate_cloudformation_template.fn
check_cloudformation_template_compliance = server.check_cloudformation_template_compliance.fn
troubleshoot_cloudformation_deployment = server.troubleshoot_cloudformation_deployment.fn
validate_cloudformation_template = server.validate_cloudformation_template
check_cloudformation_template_compliance = server.check_cloudformation_template_compliance
troubleshoot_cloudformation_deployment = server.troubleshoot_cloudformation_deployment
get_cloudformation_pre_deploy_validation_instructions = (
server.get_cloudformation_pre_deploy_validation_instructions.fn
server.get_cloudformation_pre_deploy_validation_instructions
)
search_cdk_documentation = server.search_cdk_documentation.fn
search_cloudformation_documentation = server.search_cloudformation_documentation.fn
search_cdk_samples_and_constructs = server.search_cdk_samples_and_constructs.fn
cdk_best_practices = server.cdk_best_practices.fn
search_cdk_documentation = server.search_cdk_documentation
search_cloudformation_documentation = server.search_cloudformation_documentation
search_cdk_samples_and_constructs = server.search_cdk_samples_and_constructs
cdk_best_practices = server.cdk_best_practices


class TestValidateCloudFormationTemplate:
Expand Down
Loading
Loading