agentcore_tools
Integrate tools with AWS AgentCore agents to build production-ready AI agents with enterprise-grade security, observability, and scalability.
Instructions
Documentation on integrating tools with AWS AgentCore agents.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- Implementation of the agentcore_tools handler function, which returns the content of tools.md documentation file using the @mcp.tool() decorator for registration.@mcp.tool() async def agentcore_tools() -> str: """Documentation on integrating tools with AWS AgentCore agents.""" return pkg_resources.joinpath("content", "tools.md").read_text( encoding="utf-8" )