agentcore_identity
Manage secure authentication and authorization for AI agents within the AWS AgentCore framework to ensure enterprise-grade identity management.
Instructions
Documentation on AgentCore Identity for secure agent authentication and authorization.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The agentcore_identity tool handler: an async function decorated with @mcp.tool() that reads and returns the content of 'identity.md' from package resources.@mcp.tool() async def agentcore_identity() -> str: """Documentation on AgentCore Identity for secure agent authentication and authorization.""" return pkg_resources.joinpath("content", "identity.md").read_text( encoding="utf-8" )