From aa1a7758008c26288955d1a8ede718a1ce0b3bc0 Mon Sep 17 00:00:00 2001 From: Tejas Kashinath Date: Fri, 1 May 2026 14:00:32 -0400 Subject: [PATCH 1/3] fix: set iamRoleFallback to true for lambda gateway targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep TARGET_TYPE_AUTH_CONFIG in sync with @aws/agentcore-cdk — lambda targets need GATEWAY_IAM_ROLE just like lambdaFunctionArn targets. Related: https://github.com/aws/agentcore-cli/issues/1005 --- src/schema/schemas/mcp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema/schemas/mcp.ts b/src/schema/schemas/mcp.ts index aa5a28bd7..42cd89810 100644 --- a/src/schema/schemas/mcp.ts +++ b/src/schema/schemas/mcp.ts @@ -58,7 +58,7 @@ export const TARGET_TYPE_AUTH_CONFIG: Record< smithyModel: { authRequired: false, validAuthTypes: [], iamRoleFallback: true }, apiGateway: { authRequired: false, validAuthTypes: ['API_KEY', 'NONE'], iamRoleFallback: true }, mcpServer: { authRequired: false, validAuthTypes: ['OAUTH', 'NONE'], iamRoleFallback: false }, - lambda: { authRequired: false, validAuthTypes: ['OAUTH', 'NONE'], iamRoleFallback: false }, + lambda: { authRequired: false, validAuthTypes: ['OAUTH', 'NONE'], iamRoleFallback: true }, lambdaFunctionArn: { authRequired: false, validAuthTypes: ['OAUTH', 'NONE'], iamRoleFallback: true }, }; From 755b274e53c9dac5b5ce56af7f5e876e4ae26ad1 Mon Sep 17 00:00:00 2001 From: Tejas Kashinath Date: Fri, 1 May 2026 14:15:56 -0400 Subject: [PATCH 2/3] chore: trigger CI re-run From 10c1a6d3bfa53aaebb03539b9ef72700b95052f1 Mon Sep 17 00:00:00 2001 From: Tejas Kashinath Date: Fri, 1 May 2026 14:21:30 -0400 Subject: [PATCH 3/3] style: fix prettier table alignment in docs/frameworks.md --- docs/frameworks.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/frameworks.md b/docs/frameworks.md index 673c3789d..7d2b8658a 100644 --- a/docs/frameworks.md +++ b/docs/frameworks.md @@ -162,8 +162,8 @@ agentcore add agent \ Not all frameworks support all protocol modes. MCP protocol is a standalone tool server with no framework. -| Protocol | Supported Frameworks | -| -------- | ------------------------------------------------------------- | +| Protocol | Supported Frameworks | +| -------- | ----------------------------------------------------- | | **HTTP** | Strands, LangChain_LangGraph, GoogleADK, OpenAIAgents | -| **MCP** | None (standalone tool server) | -| **A2A** | Strands, GoogleADK, LangChain_LangGraph | +| **MCP** | None (standalone tool server) | +| **A2A** | Strands, GoogleADK, LangChain_LangGraph |