agentcore_gateway
Facilitates integration of external APIs and services with AWS AgentCore MCP Server, enabling streamlined connectivity for building secure and scalable AI agents.
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. It is registered via the @mcp.tool() decorator and returns the contents of the 'content/gateway.md' file as a string, providing documentation 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" )