AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT-0 Self-run

Sample Advanced Strands Agents With MCP

mcp-aws-samples-sample-advanced-strands-agents-with-mcp · by aws-samples

A comprehensive advanced course for building production-ready AI agents using the Strands Agents SDK. This repository contains 6 progressive labs that teach advanced capabilities including tool integration, memory persistence, Model Context Protocol (MCP), and comprehensive observability.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add mcp-aws-samples-sample-advanced-strands-agents-with-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-aws-samples-sample-advanced-strands-agents-with-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
11mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Sample Advanced Strands Agents With MCP? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Advanced Strands Agents with MCP

A comprehensive advanced course for building production-ready AI agents using the Strands Agents SDK. This repository contains 6 progressive labs that teach advanced capabilities including tool integration, memory persistence, Model Context Protocol (MCP), and comprehensive observability.

🎯 Course Overview

This advanced course provides foundational and advanced expertise in building production-ready AI agents, focusing on the agent class, agentic loop, and the complete ecosystem of components that power intelligent autonomous systems. You'll master core principles of agentic AI, understanding how agents combine large language models, tools, and memory to create systems that can understand, plan, and execute actions autonomously.

Course Topics:

  • Strands Agents SDK - Advanced agent architecture and lifecycle management
  • Model Context Protocol (MCP) - Standardized tool and service integration
  • Multi-Provider Configuration - Amazon Bedrock, Anthropic, OpenAI, and Ollama
  • Advanced Processing - Hooks, session management, and conversation strategies
  • Memory Systems - Long-term persistent memory with FAISS, OpenSearch, and Mem0
  • Enterprise Features - Observability, metrics analysis, and performance optimization

Prerequisites: Basic understanding of AI/ML concepts. For beginners, we recommend starting with Getting Started with Strands Agents (Course 1).

📚 Lab Structure

Lab 1: Overview of Strands Agents (12:52)

Files: first_agent.py

Learn fundamental agentic AI concepts and build your first Strands agent:

  • Basic agent creation with default configuration (no API keys required)
  • Core agent components and execution flow
  • Agent result examination (message, metrics, state, stop reasons)
  • Dynamic model configuration and system prompt modification
  • Conversation history management and message clearing

Lab 2: Model Providers and Configuration (11:59)

Files: anthropic_model.py, bedrock_model.py, ollama_model.py, openai_model.py

Configure agents across multiple LLM providers for flexibility and cost optimization:

  • Model architecture overview and provider-specific parameters
  • Bedrock model setup with structured output capabilities
  • Anthropic model configuration with thinking mode
  • Ollama local deployment and OpenAI integration
  • Metrics analysis and performance monitoring

Lab 3: Advanced Response Processing with Hooks (13:30)

Files: async_example.py, hook_example_1.py, hook_example_2.py

Implement custom logic to intercept and modify agent behavior at lifecycle points:

  • Event-driven hook system and lifecycle management
  • Before/after event handling and agent modifications
  • Async iterators, callback handlers, and retry logic
  • Tool hook examples and precision parameter setup

Lab 4: Tools and MCP Integration (18:55)

Files: mcp_integration.py, self_extending_example.py, tools/

Extend agent capabilities with custom tools and external service integration:

  • Built-in tools from strands-agents-tools library
  • Custom tool creation using @tool decorator
  • MCP server configuration for AWS Documentation and Pricing
  • Self-extending agents and meta tooling capabilities
  • Proper error handling and security implementation

Lab 5: Conversation and Session Management (11:26)

Files: session_example.py, verify_session.py

Manage conversation state and context effectively across interactions:

  • Context window challenges and management strategies
  • Three conversation manager approaches (Null, SlidingWindow, Summarizing)
  • Session state persistence and user isolation
  • File-based and Amazon S3 session storage options

Lab 6: Memory Persistent Agents (15:19)

Files: memory_example.py

Build agents with long-term memory capabilities across conversations:

  • Memory backends integration (FAISS, OpenSearch, Mem0)
  • Web search integration with DuckDuckGo
  • Memory storage, retrieval, and relevance scoring
  • Amazon Bedrock Knowledge Bases integration
  • Retention policies and privacy controls

📖 Learning Path

  1. Start with Lab 1 - Learn agent fundamentals with no setup required
  2. Progress through Labs 2-3 - Configure multiple providers and implement hooks
  3. Master Lab 4 - Integrate tools and MCP servers for external capabilities
  4. Build with Lab 5 - Implement sophisticated conversation management
  5. Advanced Lab 6 - Create agents with persistent memory systems

🔧 Model Provider Support

This course primarily uses the Anthropic Claude API, but all examples can be configured to work with:

  • Amazon Bedrock (Claude, Llama, Titan, and other models)
  • OpenAI (GPT-4, GPT-3.5-turbo)
  • Ollama (Local model deployment)
  • Other providers supported by Strands SDK

🚀 Quick Start

Prerequisites

  • Python 3.8+
  • Virtual environment (recommended)
  • Anthropic Claude API key (primary requirement)
  • Additional API keys for specific labs:
  • Amazon Bedrock (for AWS integration labs)
  • OpenAI (optional alternative)
  • Mem0 (for memory persistence Lab 6)

Getting Your Anthropic API Key

  1. Visit Anthropic Console
  2. Sign up for an account or log in
  3. Navigate to API Keys section
  4. Click Create Key and give it a name
  5. Copy your API key (starts with sk-ant-)

Installation

  1. Clone the repository:

``bash git clone cd sample-Advanced-Strands-Agents-with-MCP ``

  1. Create and activate virtual environment:

``bash python -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate ``

  1. Install dependencies:

``bash pip install -r requirements.txt ``

  1. Configure environment variables:

Copy .env.example to .env and set your API key: ```bash # Required - Get from https://console.anthropic.com/ ANTHROPICAPIKEY=sk-ant-yourkeyhere

# Optional - for specific labs only AWSACCESSKEYID=yourawskey # For Lab 4 MCP integration AWSSECRETACCESSKEY=yourawssecret # For Lab 4 MCP integration AWSSESSIONTOKEN=yourawstoken # For Lab 4 MCP integration OPENAIAPIKEY=youropenaikey # For Lab 2 model alternatives MEM0APIKEY=yourmem0key # For Lab 6 memory persistence ```

Running the Labs

Each lab can be run independently. Start with Lab 1 for advanced fundamentals:

Lab 1 - Agent Fundamentals (No API key required):

cd Lab1
python first_agent.py

Lab 2 - Model Providers:

cd Lab2
python anthropic_model.py
python bedrock_model.py

Lab 4 - MCP Integration:

cd Lab4
python mcp_integration.py

Lab 6 - Memory Agents:

cd Lab6  
python memory_example.py

📝 Additional Resources

🐛 Troubleshooting

Common issues and solutions:

  • API Key Issues - Ensure ANTHROPIC_API_KEY is set correctly in your .env file
  • Key should start with sk-ant-
  • Get your key from Anthropic Console
  • Import Errors - Run pip install -r requirements.txt if you encounter missing dependencies
  • AWS Credentials - Only needed for Lab 4 MCP integration (configure AWS CLI or environment variables)
  • MCP Servers - Allow time for MCP servers to initialize before agent connections in Lab 4
  • Memory Backends - Mem0 API key only required for Lab 6 memory persistence

Security

See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.

License

This library is licensed under the MIT-0 License. See the LICENSE file.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.