How to add a Swagger summary to ServiceStack.GetAccessToken

Please don’t try to re-register or otherwise interfere with the registration of internal services, they’re not overridable. Any customizations should be done using the filters in OpenApiFeature which I’ve provided an example of in one of your earlier questions:

e.g.

Plugins.Add(new OpenApiFeature
{
    ApiDeclarationFilter = api =>
    {
        api.Paths["/access-token"].Get.Summary = "My GetAccessToken Summary";
    },
});