├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images └── nova_act_img.jpg ├── mcp_examples ├── README.md ├── hello_world_mcp_client.py ├── hello_world_mcp_server.py ├── nova_act_mcp_client.py └── nova_act_mcp_server.py ├── nova_act_examples ├── README.md ├── get_coffee_maker.py └── multi_monitor.py ├── requirements.txt ├── strands_examples ├── mcp_docs_diag.py ├── nova_act_mcp_server.py ├── nova_act_strands.py └── weather_word_count.py └── streamlit_examples ├── README.md └── video_game_research_st.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/README.md -------------------------------------------------------------------------------- /images/nova_act_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/images/nova_act_img.jpg -------------------------------------------------------------------------------- /mcp_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/mcp_examples/README.md -------------------------------------------------------------------------------- /mcp_examples/hello_world_mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/mcp_examples/hello_world_mcp_client.py -------------------------------------------------------------------------------- /mcp_examples/hello_world_mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/mcp_examples/hello_world_mcp_server.py -------------------------------------------------------------------------------- /mcp_examples/nova_act_mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/mcp_examples/nova_act_mcp_client.py -------------------------------------------------------------------------------- /mcp_examples/nova_act_mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/mcp_examples/nova_act_mcp_server.py -------------------------------------------------------------------------------- /nova_act_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/nova_act_examples/README.md -------------------------------------------------------------------------------- /nova_act_examples/get_coffee_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/nova_act_examples/get_coffee_maker.py -------------------------------------------------------------------------------- /nova_act_examples/multi_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/nova_act_examples/multi_monitor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/requirements.txt -------------------------------------------------------------------------------- /strands_examples/mcp_docs_diag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/strands_examples/mcp_docs_diag.py -------------------------------------------------------------------------------- /strands_examples/nova_act_mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/strands_examples/nova_act_mcp_server.py -------------------------------------------------------------------------------- /strands_examples/nova_act_strands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/strands_examples/nova_act_strands.py -------------------------------------------------------------------------------- /strands_examples/weather_word_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/strands_examples/weather_word_count.py -------------------------------------------------------------------------------- /streamlit_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/streamlit_examples/README.md -------------------------------------------------------------------------------- /streamlit_examples/video_game_research_st.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-agents-with-nova-act-and-mcp/HEAD/streamlit_examples/video_game_research_st.py --------------------------------------------------------------------------------