agentcore_tools
Enables integration of tools with AWS AgentCore agents, providing enterprise-grade security, observability, and scalability for building production-ready AI agents.
Instructions
Documentation on integrating tools with AWS AgentCore agents.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The main handler function for the 'agentcore_tools' MCP tool, registered via @mcp.tool() decorator. It loads and returns the documentation content from the embedded 'tools.md' file.@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" )
- src/aws_agentcore_mcp_server/server.py:69-69 (registration)Registration of the 'agentcore_tools' tool using the FastMCP @mcp.tool() decorator.@mcp.tool()