-
Notifications
You must be signed in to change notification settings - Fork 516
Feature/cfn samples mcp server #464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/cfn samples mcp server #464
Conversation
- Created 04-cfn-samples/ directory with production-ready CloudFormation templates - Added mcp-server-agentcore-runtime sample with: - Complete CloudFormation template (mcp-server-template.yaml) - Automated deployment scripts (deploy.sh, test.sh, cleanup.sh) - Authentication helper (get_token.py) - MCP client test script (test_mcp_server.py) - Comprehensive documentation (README.md, DETAILED_GUIDE.md) - Features: - One-command deployment with automated Docker image building - JWT authentication via Cognito - ARM64 Docker images built via CodeBuild - Three sample MCP tools (add_numbers, multiply_numbers, greet_user) - Least-privilege IAM roles - Complete troubleshooting guide
- Added basic-runtime: Simple agent without tools or memory - Added multi-agent-runtime: Two-agent system with orchestrator and specialist - Added weather-agent-runtime: Complete agent with browser, code interpreter, and memory - Updated main README with all four samples and comprehensive documentation
- Added deploy.sh and cleanup.sh for basic-runtime - Added deploy.sh and cleanup.sh for multi-agent-runtime - Added deploy.sh and cleanup.sh for weather-agent-runtime - All scripts are executable and follow the same pattern as mcp-server-agentcore-runtime - Scripts include proper error handling and user-friendly output
|
Latest scan for commit: Security Scan ResultsScan Metadata
SummaryScanner ResultsThe table below shows findings by scanner, with status based on severity thresholds and dependencies: Column Explanations: Severity Levels (S/C/H/M/L/I):
Other Columns:
Scanner Results:
Severity Thresholds (Thresh Column):
Threshold Source: Values in parentheses indicate where the threshold is configured:
Statistics calculation:
Detailed FindingsShow 141 actionable findingsFinding 1: SECRET-SECRET-KEYWORD
Description: Code Snippet: Finding 2: SECRET-SECRET-KEYWORD
Description: Code Snippet: Finding 3: SECRET-SECRET-KEYWORD
Description: Code Snippet: Finding 4: CFN_NAG_W32
Description: Finding 5: CFN_NAG_W11
Description: Finding 6: CFN_NAG_W11
Description: Finding 7: CFN_NAG_W89
Description: Finding 8: CFN_NAG_W92
Description: Finding 9: CFN_NAG_W28
Description: Finding 10: CFN_NAG_W28
Description: Finding 11: CFN_NAG_W28
Description: Finding 12: CFN_NAG_W28
Description: Finding 13: CFN_NAG_W32
Description: Finding 14: CFN_NAG_W11
Description: Finding 15: CFN_NAG_W11
Description: Finding 16: CFN_NAG_W11
Description: Finding 17: CFN_NAG_W89
Description: Finding 18: CFN_NAG_W89
Description: Finding 19: CFN_NAG_W92
Description: Finding 20: CFN_NAG_W92
Description: Finding 21: CFN_NAG_W51
Description: Finding 22: CFN_NAG_W28
Description: Finding 23: CFN_NAG_W28
Description: Finding 24: CFN_NAG_W28
Description: Finding 25: CFN_NAG_W28
Description: Finding 26: CFN_NAG_W35
Description: Finding 27: CFN_NAG_W41
Description: Finding 28: CFN_NAG_W32
Description: Finding 29: CFN_NAG_W11
Description: Finding 30: CFN_NAG_W11
Description: Finding 31: CFN_NAG_W89
Description: Finding 32: CFN_NAG_W89
Description: Finding 33: CFN_NAG_W92
Description: Finding 34: CFN_NAG_W92
Description: Finding 35: CFN_NAG_W28
Description: Finding 36: CFN_NAG_W28
Description: Finding 37: CFN_NAG_W28
Description: Finding 38: CFN_NAG_W28
Description: Finding 39: CFN_NAG_W32
Description: Finding 40: CFN_NAG_W32
Description: Finding 41: CFN_NAG_W11
Description: Finding 42: CFN_NAG_W11
Description: Finding 43: CFN_NAG_W11
Description: Finding 44: CFN_NAG_W89
Description: Finding 45: CFN_NAG_W92
Description: Finding 46: CFN_NAG_W28
Description: Finding 47: CFN_NAG_W28
Description: Finding 48: CFN_NAG_W28
Description: Finding 49: CFN_NAG_W28
Description: Finding 50: CFN_NAG_W28
Description: Finding 51: CFN_NAG_W28
Description: Finding 52: CKV_AWS_136
Description: Code Snippet: Finding 53: CKV_AWS_51
Description: Code Snippet: Finding 54: CKV_AWS_111
Description: Code Snippet: Finding 55: CKV_AWS_111
Description: Code Snippet: Finding 56: CKV_AWS_117
Description: Code Snippet: Finding 57: CKV_AWS_363
Description: Code Snippet: |
…ure diagrams - Added detailed README.md files for basic-runtime, multi-agent-runtime, and weather-agent-runtime - Included architecture PNG diagrams for basic-runtime and multi-agent-runtime - Standardized testing sections across all READMEs (AWS CLI and Console only) - Removed Python testing sections for consistency - Added deployment, testing, troubleshooting, and cost estimate sections - Updated CONTRIBUTORS.md with contributor name - Updated main 04-cfn-samples README.md
- Added architecture.png with visual diagram - Updated README to use local PNG instead of tutorial reference - Added detailed architecture component descriptions
979a1d7 to
8089a3a
Compare
…de and organize CloudFormation templates - Rename 04-cfn-samples to 04-infrastructure-as-code - Create cloudformation subfolder for better organization - Rename weather-agent-runtime to end-to-end-weather-agent - Rename weather agent template.yaml to end-to-end-weather-agent.yaml - Update all documentation and scripts to reflect new structure - Update main README with new paths and folder structure - All Python files pass ruff formatting checks
8089a3a to
6035777
Compare
04-infrastructure-as-code/cloudformation/end-to-end-weather-agent/deploy.sh
Show resolved
Hide resolved
04-infrastructure-as-code/cloudformation/end-to-end-weather-agent/cleanup.sh
Show resolved
Hide resolved
a418838 to
ebc570a
Compare
…duction-ready language - Changed all deploy.sh, cleanup.sh, and test.sh scripts from us-east-1 to us-west-2 - Updated all README files with CLI examples to use us-west-2 - Updated Python helper scripts (get_token.py, test_mcp_server.py) to use us-west-2 in examples - Updated multi-agent-runtime template.yaml default region to us-west-2 - Removed 'production-ready' language from README files, replaced with 'complete' - All 4 CloudFormation examples now consistently use us-west-2 region
ebc570a to
e457a1b
Compare
Signed-off-by: Maira Ladeira Tanke <[email protected]>
* Add CloudFormation samples for MCP Server on AgentCore Runtime - Created 04-cfn-samples/ directory with production-ready CloudFormation templates - Added mcp-server-agentcore-runtime sample with: - Complete CloudFormation template (mcp-server-template.yaml) - Automated deployment scripts (deploy.sh, test.sh, cleanup.sh) - Authentication helper (get_token.py) - MCP client test script (test_mcp_server.py) - Comprehensive documentation (README.md, DETAILED_GUIDE.md) - Features: - One-command deployment with automated Docker image building - JWT authentication via Cognito - ARM64 Docker images built via CodeBuild - Three sample MCP tools (add_numbers, multiply_numbers, greet_user) - Least-privilege IAM roles - Complete troubleshooting guide * Add omrsamer to CONTRIBUTORS.md * Add three additional CloudFormation samples - Added basic-runtime: Simple agent without tools or memory - Added multi-agent-runtime: Two-agent system with orchestrator and specialist - Added weather-agent-runtime: Complete agent with browser, code interpreter, and memory - Updated main README with all four samples and comprehensive documentation * Add deployment and cleanup scripts for all CFN samples - Added deploy.sh and cleanup.sh for basic-runtime - Added deploy.sh and cleanup.sh for multi-agent-runtime - Added deploy.sh and cleanup.sh for weather-agent-runtime - All scripts are executable and follow the same pattern as mcp-server-agentcore-runtime - Scripts include proper error handling and user-friendly output * Add comprehensive README documentation for CFN samples with architecture diagrams - Added detailed README.md files for basic-runtime, multi-agent-runtime, and weather-agent-runtime - Included architecture PNG diagrams for basic-runtime and multi-agent-runtime - Standardized testing sections across all READMEs (AWS CLI and Console only) - Removed Python testing sections for consistency - Added deployment, testing, troubleshooting, and cost estimate sections - Updated CONTRIBUTORS.md with contributor name - Updated main 04-cfn-samples README.md * Add architecture diagram to mcp-server-agentcore-runtime README - Added architecture.png with visual diagram - Updated README to use local PNG instead of tutorial reference - Added detailed architecture component descriptions * Update get_token.py cosmetic changes * Fix Python formatting to pass ruff linter * Restructure infrastructure samples: rename to 04-infrastructure-as-code and organize CloudFormation templates - Rename 04-cfn-samples to 04-infrastructure-as-code - Create cloudformation subfolder for better organization - Rename weather-agent-runtime to end-to-end-weather-agent - Rename weather agent template.yaml to end-to-end-weather-agent.yaml - Update all documentation and scripts to reflect new structure - Update main README with new paths and folder structure - All Python files pass ruff formatting checks * Update CloudFormation examples to use us-west-2 region and remove production-ready language - Changed all deploy.sh, cleanup.sh, and test.sh scripts from us-east-1 to us-west-2 - Updated all README files with CLI examples to use us-west-2 - Updated Python helper scripts (get_token.py, test_mcp_server.py) to use us-west-2 in examples - Updated multi-agent-runtime template.yaml default region to us-west-2 - Removed 'production-ready' language from README files, replaced with 'complete' - All 4 CloudFormation examples now consistently use us-west-2 region * Resolve CONTRIBUTORS.md merge conflict - include all contributors from both branches --------- Signed-off-by: Maira Ladeira Tanke <[email protected]> Co-authored-by: Maira Ladeira Tanke <[email protected]>
Amazon Bedrock AgentCore Samples Pull Request
Important
review readylabel to it. Only PRs withreview readywill be reviewed.Issue number:
Concise description of the PR
User experience
Checklist
If your change doesn't seem to apply, please leave them unchecked.
Acknowledgment
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license.