# atmos mcp remove

Use this command to remove an MCP server from `mcp.servers` in `atmos.yaml`.

> ⚠️ Experimental

## Description

The `atmos mcp remove` command deletes an entry from `mcp.servers` in `atmos.yaml`.

Only `atmos.yaml` is edited — `remove` never touches an AI client's config file. If the server was already pushed to a client via `atmos mcp install`, run [`atmos mcp uninstall`](/cli/commands/mcp/uninstall) separately to remove it there too. This mirrors [`atmos mcp add`](/cli/commands/mcp/add), which only writes `atmos.yaml` by default.

## Usage

```shell
atmos mcp remove <name> [flags]
```

- **`name`**
  Required. The server name to remove, as it appears under 
  `mcp.servers`
  .
- **`--yes`, `-y`**
  Skip the confirmation prompt.

### Examples

```shell
# Remove a server, with a confirmation prompt.
atmos mcp remove aws-docs

# Remove without prompting.
atmos mcp remove aws-docs --yes
```
