AAM vs MCP (Model Context Protocol)
Anthropic's protocol for giving an LLM a set of pre-installed tools at startup. The agent runtime loads each MCP server into context before the conversation starts.
You're building a focused agent that uses ~5 tools you control end-to-end (e.g. an internal IT helper that uses your custom company API). The user has the agent installed locally and can configure it.
The agent needs to discover and act on sites it's never seen before, in real time, without a pre-installation step. AAM is runtime-discoverable; MCP is install-time-bound. A power user with 30 services can't fit 30 MCP servers in context — but they can have the agent fetch 30 manifests on demand, only when relevant.
We ship `examples/mcp-bridge` — install one MCP server, get every AAM site. AAM and MCP are friends, not rivals; the bridge proves it.