AWS bedrock-agentcore documentation change
Summary
Updated deployment commands for AgentCore MCP server, changing from 'agentcore configure' to 'agentcore create' command syntax and updating example ARN to match new naming convention.
Security assessment
This change updates command syntax and examples for deploying agents but shows no evidence of addressing security issues. The change from 'configure' to 'create' command appears to be a CLI interface update. No security vulnerabilities, security features, or security context is provided in the diff.
Diff
diff --git a/bedrock-agentcore/latest/devguide/mcp-stateful-features.md b/bedrock-agentcore/latest/devguide/mcp-stateful-features.md index a3152ea0d..fb1f9b0f5 100644 --- a//bedrock-agentcore/latest/devguide/mcp-stateful-features.md +++ b//bedrock-agentcore/latest/devguide/mcp-stateful-features.md @@ -501 +501 @@ Create a file called `test_client.py` with the following code. This client tests - pip install bedrock-agentcore-starter-toolkit + npm install -g @aws/agentcore @@ -503 +503 @@ Create a file called `test_client.py` with the following code. This client tests - 2. Configure the agent for deployment: + 2. Create a project for deployment: @@ -505 +505 @@ Create a file called `test_client.py` with the following code. This client tests - agentcore configure -e travel_server.py -p MCP -n travel_agent_demo + agentcore create --name TravelAgentDemo --protocol MCP @@ -537 +537 @@ Replace the placeholders with your actual agent ARN and bearer token. - Agent ARN: arn:aws:bedrock-agentcore:us-west-2:123456789012:runtime/travel_agent_demo + Agent ARN: arn:aws:bedrock-agentcore:us-west-2:123456789012:runtime/TravelAgentDemo