agentcore_gateway
Integrate external APIs and services with the AWS AgentCore framework to build AI agents with enterprise-grade security, observability, and scalability.
Instructions
Documentation on AgentCore Gateway for integrating external APIs and services.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The agentcore_gateway tool handler function, decorated with @mcp.tool() for registration. It reads and returns the contents of the embedded 'gateway.md' documentation file providing information on AgentCore Gateway.@mcp.tool() async def agentcore_gateway() -> str: """Documentation on AgentCore Gateway for integrating external APIs and services.""" return pkg_resources.joinpath("content", "gateway.md").read_text( encoding="utf-8" )