quickstart
Get started with AWS AgentCore SDK to build AI agents with enterprise security, observability, and scalability.
Instructions
Quickstart documentation for AWS AgentCore SDK.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler function for the 'quickstart' MCP tool, registered via @mcp.tool() decorator. It loads and returns the content of quickstart.md from the package data.@mcp.tool() async def quickstart() -> str: """Quickstart documentation for AWS AgentCore SDK.""" return pkg_resources.joinpath("content", "quickstart.md").read_text( encoding="utf-8" )
- Helper variable providing access to package resources (content files) used by the quickstart tool and others.pkg_resources = resources.files("aws_agentcore_mcp_server")