browser.get_auth_profile
Retrieve and examine saved authentication profiles with their storage-state metadata for browser automation workflows.
Instructions
Inspect one saved auth profile and its storage-state metadata.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile_name | Yes |
Implementation Reference
- controller/app/tool_gateway.py:992-993 (handler)The handler method `_get_auth_profile` for the tool `browser.get_auth_profile`, which delegates the call to the manager.
async def _get_auth_profile(self, payload: AuthProfileNameInput) -> dict[str, Any]: return await self.manager.get_auth_profile(payload.profile_name) - controller/app/tool_gateway.py:398-402 (registration)The registration of `browser.get_auth_profile` in the `McpToolGateway` class.
name="browser.get_auth_profile", description="Inspect one saved auth profile and its storage-state metadata.", input_model=AuthProfileNameInput, handler=self._get_auth_profile, ),