├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── modules ├── anthropic-bedrock-python-ecs-mcp ├── README.md ├── docker │ ├── client │ └── server ├── infra │ └── mcp-sse-cdk │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.py │ │ ├── cdk.json │ │ ├── mcp_sse_cdk │ │ ├── __init__.py │ │ └── mcp_sse_cdk_stack.py │ │ ├── requirements-dev.txt │ │ ├── requirements.txt │ │ ├── source.bat │ │ └── tests │ │ ├── __init__.py │ │ └── unit │ │ ├── __init__.py │ │ └── test_mcp_sse_cdk_stack.py ├── pyproject.toml ├── requirements.txt └── src │ ├── client-requirements.txt │ ├── client.py │ ├── server-requirements.txt │ └── server.py ├── converse-client-server-sse-demo-docker ├── .gitignore ├── README.md ├── client │ ├── .dockerignore │ ├── Dockerfile │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── MCPClient.ts │ │ ├── MCPConverseClient.ts │ │ ├── config │ │ │ └── bedrock.ts │ │ ├── converse │ │ │ ├── ConverseAgent.ts │ │ │ ├── ConverseTools.ts │ │ │ └── types.ts │ │ └── index.ts │ └── tsconfig.json ├── docker-compose.yml ├── scripts │ ├── build.sh │ ├── run.sh │ └── stop.sh └── server │ ├── Dockerfile │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.ts │ ├── config │ │ └── environment.ts │ ├── services │ │ └── health.ts │ ├── tools │ │ ├── aws │ │ │ └── s3BucketCount.ts │ │ ├── index.ts │ │ └── time.ts │ ├── types.ts │ └── types │ │ └── index.ts │ └── tsconfig.json ├── converse-client-server-stdio-demo-local ├── .gitignore ├── README.md ├── app.py ├── converse_agent.py ├── converse_tools.py ├── mcp_client.py ├── mcp_server.py └── requirements.txt ├── java-mcp-bedrock-agent ├── .gitattributes ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ └── java │ └── javamcpbedrockagent │ └── Application.java ├── spring-ai-agent-ecs ├── .gitattributes ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── README.md ├── client.http ├── client │ ├── pom.xml │ └── src │ │ └── main │ │ ├── kotlin │ │ └── mcpagentspringai │ │ │ └── Application.kt │ │ └── resources │ │ └── application.properties ├── infra.cfn ├── mvnw ├── mvnw.cmd ├── pom.xml └── server │ ├── pom.xml │ └── src │ └── main │ ├── kotlin │ └── mcpagentspringai │ │ ├── Application.kt │ │ └── SampleData.kt │ └── resources │ └── application.properties ├── spring-ai-java-bedrock-mcp-rag ├── .gitignore ├── README.md ├── adoptions │ ├── .gitattributes │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── adoptions │ │ │ │ └── AdoptionsApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── adoptions │ │ │ ├── DogTest.java │ │ │ ├── ServerTest.java │ │ │ └── TestAdoptionsApplication.java │ │ └── resources │ │ └── schema.sql ├── resources │ └── client.http └── scheduling │ ├── .gitattributes │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── adoptions │ │ └── SchedulingApplication.java │ └── resources │ └── application.properties ├── spring-ai-mcp-inter-agent-ecs ├── .gitattributes ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── README.md ├── client-server │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mcpagentspringai │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── mcpagentspringai │ │ │ └── TestApplication.java │ │ └── resources │ │ └── application.properties ├── client.http ├── client │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── mcpagentspringai │ │ │ └── Application.java │ │ └── resources │ │ └── application.properties ├── infra.cfn ├── mvnw ├── mvnw.cmd ├── pom.xml └── server │ ├── pom.xml │ └── src │ └── main │ ├── kotlin │ └── mcpagentspringai │ │ ├── Application.kt │ │ └── SampleData.kt │ └── resources │ └── application.properties ├── spring-ai-mcp-server-ecs ├── .gitattributes ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── README.md ├── infra.cfn ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ └── kotlin │ └── springaimcpserverecs │ └── Application.kt ├── strands-a2a-inter-agent ├── .gitignore ├── .python-version ├── README.md ├── employee-agent │ └── agent.py ├── employee-server │ ├── employee_data.py │ └── server.py ├── hr-agent │ └── agent.py ├── infra.cfn ├── pyproject.toml ├── test.http └── uv.lock ├── strands-mcp-inter-agent-agentcore ├── .gitignore ├── .python-version ├── Procfile ├── README.md ├── cdk.json ├── employee_agent │ └── agent.py ├── employee_server │ ├── employee_data.py │ └── server.py ├── hr_agent │ └── agent.py ├── infra │ ├── bedrock_agentcore_runtime.py │ ├── buildpack_image_asset.py │ └── infra.py ├── pyproject.toml ├── shell.nix ├── test.http ├── test │ └── invoke_hragent.py └── uv.lock └── strands-mcp-inter-agent ├── .gitignore ├── .python-version ├── README.md ├── employee-agent └── agent.py ├── employee-server ├── employee_data.py └── server.py ├── hr-agent └── agent.py ├── infra.cfn ├── pyproject.toml ├── test.http └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/README.md -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/README.md -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/docker/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/docker/client -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/docker/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/docker/server -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/.gitignore -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/README.md -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/app.py -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/cdk.json -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/mcp_sse_cdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/mcp_sse_cdk/mcp_sse_cdk_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/mcp_sse_cdk/mcp_sse_cdk_stack.py -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest==6.2.5 2 | -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/requirements.txt -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/source.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/source.bat -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/tests/unit/test_mcp_sse_cdk_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/infra/mcp-sse-cdk/tests/unit/test_mcp_sse_cdk_stack.py -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/pyproject.toml -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/requirements.txt -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/src/client-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/src/client-requirements.txt -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/src/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/src/client.py -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/src/server-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/src/server-requirements.txt -------------------------------------------------------------------------------- /modules/anthropic-bedrock-python-ecs-mcp/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/anthropic-bedrock-python-ecs-mcp/src/server.py -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/.gitignore -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/README.md -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/.dockerignore -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/Dockerfile -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/package-lock.json -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/package.json -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/MCPClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/MCPClient.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/MCPConverseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/MCPConverseClient.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/config/bedrock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/config/bedrock.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/converse/ConverseAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/converse/ConverseAgent.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/converse/ConverseTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/converse/ConverseTools.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/converse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/converse/types.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/src/index.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/client/tsconfig.json -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/docker-compose.yml -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/scripts/build.sh -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/scripts/run.sh -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/scripts/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/scripts/stop.sh -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/Dockerfile -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/package-lock.json -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/package.json -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/app.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/config/environment.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/services/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/services/health.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/tools/aws/s3BucketCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/tools/aws/s3BucketCount.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/tools/index.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/tools/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/tools/time.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/types.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/src/types/index.ts -------------------------------------------------------------------------------- /modules/converse-client-server-sse-demo-docker/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-sse-demo-docker/server/tsconfig.json -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/.gitignore -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/README.md -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/app.py -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/converse_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/converse_agent.py -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/converse_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/converse_tools.py -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/mcp_client.py -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/mcp_server.py -------------------------------------------------------------------------------- /modules/converse-client-server-stdio-demo-local/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/converse-client-server-stdio-demo-local/requirements.txt -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/.gitattributes -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/.gitignore -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/README.md -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/mvnw -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/mvnw.cmd -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/pom.xml -------------------------------------------------------------------------------- /modules/java-mcp-bedrock-agent/src/main/java/javamcpbedrockagent/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/java-mcp-bedrock-agent/src/main/java/javamcpbedrockagent/Application.java -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/.gitattributes -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/README.md -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/client.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/client.http -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/client/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/client/src/main/kotlin/mcpagentspringai/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/client/src/main/kotlin/mcpagentspringai/Application.kt -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/client/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/client/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/infra.cfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/infra.cfn -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/mvnw -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/mvnw.cmd -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/server/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/server/src/main/kotlin/mcpagentspringai/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/server/src/main/kotlin/mcpagentspringai/Application.kt -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/server/src/main/kotlin/mcpagentspringai/SampleData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-agent-ecs/server/src/main/kotlin/mcpagentspringai/SampleData.kt -------------------------------------------------------------------------------- /modules/spring-ai-agent-ecs/server/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/README.md -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/.gitattributes -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/mvnw -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/mvnw.cmd -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/main/java/com/example/adoptions/AdoptionsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/main/java/com/example/adoptions/AdoptionsApplication.java -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/DogTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/DogTest.java -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/ServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/ServerTest.java -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/TestAdoptionsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/java/com/example/adoptions/TestAdoptionsApplication.java -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/adoptions/src/test/resources/schema.sql -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/resources/client.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/resources/client.http -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/.gitattributes -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/mvnw -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/mvnw.cmd -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/src/main/java/com/example/adoptions/SchedulingApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/src/main/java/com/example/adoptions/SchedulingApplication.java -------------------------------------------------------------------------------- /modules/spring-ai-java-bedrock-mcp-rag/scheduling/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-java-bedrock-mcp-rag/scheduling/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/.gitattributes -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/README.md -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client-server/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client-server/src/main/java/mcpagentspringai/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client-server/src/main/java/mcpagentspringai/Application.java -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client-server/src/test/java/mcpagentspringai/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client-server/src/test/java/mcpagentspringai/TestApplication.java -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client-server/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client-server/src/test/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client.http -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client/src/main/java/mcpagentspringai/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client/src/main/java/mcpagentspringai/Application.java -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/client/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/client/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/infra.cfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/infra.cfn -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/mvnw -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/mvnw.cmd -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/server/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/server/src/main/kotlin/mcpagentspringai/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/server/src/main/kotlin/mcpagentspringai/Application.kt -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/server/src/main/kotlin/mcpagentspringai/SampleData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/server/src/main/kotlin/mcpagentspringai/SampleData.kt -------------------------------------------------------------------------------- /modules/spring-ai-mcp-inter-agent-ecs/server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-inter-agent-ecs/server/src/main/resources/application.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/.gitattributes -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/.gitignore -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/README.md -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/infra.cfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/infra.cfn -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/mvnw -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/mvnw.cmd -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/pom.xml -------------------------------------------------------------------------------- /modules/spring-ai-mcp-server-ecs/src/main/kotlin/springaimcpserverecs/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/spring-ai-mcp-server-ecs/src/main/kotlin/springaimcpserverecs/Application.kt -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/README.md -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/employee-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/employee-agent/agent.py -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/employee-server/employee_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/employee-server/employee_data.py -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/employee-server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/employee-server/server.py -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/hr-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/hr-agent/agent.py -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/infra.cfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/infra.cfn -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/pyproject.toml -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/test.http -------------------------------------------------------------------------------- /modules/strands-a2a-inter-agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-a2a-inter-agent/uv.lock -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/.gitignore -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/Procfile -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/README.md -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/cdk.json -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/employee_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/employee_agent/agent.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/employee_server/employee_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/employee_server/employee_data.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/employee_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/employee_server/server.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/hr_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/hr_agent/agent.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/infra/bedrock_agentcore_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/infra/bedrock_agentcore_runtime.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/infra/buildpack_image_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/infra/buildpack_image_asset.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/infra/infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/infra/infra.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/pyproject.toml -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/shell.nix -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/test.http -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/test/invoke_hragent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/test/invoke_hragent.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent-agentcore/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent-agentcore/uv.lock -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/README.md -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/employee-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/employee-agent/agent.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/employee-server/employee_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/employee-server/employee_data.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/employee-server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/employee-server/server.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/hr-agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/hr-agent/agent.py -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/infra.cfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/infra.cfn -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/pyproject.toml -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/test.http -------------------------------------------------------------------------------- /modules/strands-mcp-inter-agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agentic-ai-demos/HEAD/modules/strands-mcp-inter-agent/uv.lock --------------------------------------------------------------------------------