AWS amazonq documentation change
Summary
Added documentation for a new custom agent configuration with remote MCP server integration, including OAuth authentication instructions
Security assessment
The change documents integration with remote MCP servers and mentions OAuth authentication requirements. While it adds security-related documentation about authentication methods, there is no evidence of addressing a specific security vulnerability or incident.
Diff
diff --git a/amazonq/latest/qdeveloper-ug/command-line-custom-agents-examples.md b/amazonq/latest/qdeveloper-ug/command-line-custom-agents-examples.md index 59d4fa789..c4c187d4b 100644 --- a//amazonq/latest/qdeveloper-ug/command-line-custom-agents-examples.md +++ b//amazonq/latest/qdeveloper-ug/command-line-custom-agents-examples.md @@ -5 +5 @@ -AWS specialist custom agentDevelopment workflow custom agentCode review custom agentProject-specific custom agentTips for creating effective custom agents +AWS specialist custom agentDevelopment workflow custom agentCode review custom agentProject-specific custom agentTips for creating effective custom agentsCustom agent with remote MCP server integration @@ -363,0 +364,23 @@ This example shows how to create an custom agent tailored to a specific project, +## Custom agent with remote MCP server integration + +This example shows an agent configured to use a remote MCP server: + +###### Example Custom agent with remote MCP server + + + { + "name": "domain-finder", + "description": "Agent with access to domain search capabilities", + "prompt": "You help users find and research domain names using the find-a-domain service.", + "mcpServers": { + "find-a-domain": { + "type": "http", + "url": "https://api.findadomain.dev/mcp" + } + }, + "tools": ["@find-a-domain"], + "allowedTools": ["@find-a-domain"] + } + +This agent provides access to domain search tools through a remote MCP server. If the server requires OAuth authentication, use the `/mcp` command to authenticate when prompted. + @@ -370 +393 @@ To use the Amazon Web Services Documentation, Javascript must be enabled. Please -Configuration reference +Built-in tools