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

# Managing Accounts

> View, remove, and update your connected accounts.

## View Your Accounts

See all connected accounts at a glance:

```bash theme={null}
npx search-console-mcp accounts list
```

This shows each account's name, engine (Google or Bing), and which sites it has access to.

***

## Remove an Account

No longer need an account? Remove it by name:

```bash theme={null}
npx search-console-mcp accounts remove --account=marketing@company.com
```

***

## Add a Site to an Account

By default, a connected account can access **all sites** on that credential. If you want to limit it to specific sites, add a site boundary:

```bash theme={null}
npx search-console-mcp accounts add-site --account=marketing@company.com --site=example.com
```

You can also restrict sites during setup — the wizard will show you a list of available sites and let you pick which ones to include.

***

## Remove a Site from an Account

To remove a specific site from an account's access list:

```bash theme={null}
npx search-console-mcp accounts remove --site=example.com
```
