agentcore_observability
Monitor and debug AI agents in the AWS AgentCore framework to ensure performance and reliability through observability tools.
Instructions
Documentation on AgentCore Observability for monitoring and debugging agents.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler function for the agentcore_observability tool. Decorated with @mcp.tool() for automatic registration in the FastMCP server. Returns the content of the observability.md documentation file.@mcp.tool() async def agentcore_observability() -> str: """Documentation on AgentCore Observability for monitoring and debugging agents.""" return pkg_resources.joinpath("content", "observability.md").read_text( encoding="utf-8" )