# LoginResult

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/mcp_providers/base/LoginResult)

Outcome of a provider's pre-handshake `run_login` step.

## Signature

```python
LoginResult(
    self,
    completed: bool = False,
    extra_auth_params: dict[str, str] = dict(),
)
```

## Constructors

```python
__init__(
    self,
    completed: bool = False,
    extra_auth_params: dict[str, str] = dict(),
) -> None
```

| Name | Type |
|------|------|
| `completed` | `bool` |
| `extra_auth_params` | `dict[str, str]` |


## Properties

- `completed`
- `extra_auth_params`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/d1c6946218b4f0f86ab7b02b6bb6af1e4b75cede/libs/code/deepagents_code/mcp_providers/base.py#L25)