# `GustWeb.MCPRouter`

Router macro that mounts the Gust MCP server routes inside a chosen scope.

Import this module into your Phoenix router and call `gust_mcp_server/0`
inside an API scope. The host router owns the prefix, so you can mount
these routes anywhere that fits your app:

    import GustWeb.MCPRouter

    scope "/mcp", MyAppWeb do
      pipe_through :api
      gust_mcp_server()
    end

    scope "/gust/mcp", MyAppWeb do
      pipe_through :api
      gust_mcp_server()
    end

# `gust_mcp_server`
*macro* 

---

*Consult [api-reference.md](api-reference.md) for complete listing*
