> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# list_connections

> List the third-party apps the user has connected to their Agentcard account via OAuth (e.g.

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

**Behavior:** read-only, idempotent.

## What it does

List the third-party apps the user has connected to their Agentcard account via OAuth (e.g. Kilo), including when each was connected and whether it is still active. Read-only. To revoke an app, call revoke\_connection with its clientId.

## Inputs

None.

## Returns

| Field                  | Type   | Description                                                               |
| ---------------------- | ------ | ------------------------------------------------------------------------- |
| `message` *(required)* | string | Human-readable summary of the connected apps.                             |
| `status`               | string | Result status: "no\_connections" when none are connected, otherwise "ok". |
| `count`                | number | Number of connected apps.                                                 |
| `connections`          | array  | The third-party apps connected to the user's account via OAuth.           |

## Example call

```json theme={null}
{
  "tool": "list_connections",
  "arguments": {}
}
```
