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

# Codex

> Connect Codex to Breakcold MCP.

<img src="https://www.google.com/s2/favicons?domain=developers.openai.com&sz=96" alt="Codex logo" width="56" height="56" style={{ borderRadius: "8px" }} />

Website: [developers.openai.com/codex](https://developers.openai.com/codex)

Use Breakcold as an MCP server in Codex when you want Codex to inspect or operate on Breakcold CRM data during agent workflows.

## MCP endpoint

```txt theme={null}
https://mcp.breakcold.com/mcp/v1
```

## Setup

Add the Breakcold MCP server with the Codex CLI:

```bash theme={null}
codex mcp add breakcold --url https://mcp.breakcold.com/mcp/v1
```

Authorize Codex with Breakcold if your server is using OAuth:

```bash theme={null}
codex mcp login breakcold
```

Verify the server is configured:

```bash theme={null}
codex mcp list
```

For bearer-token access, configure the server in `~/.codex/config.toml` and point Codex to an environment variable that stores the Breakcold bearer key:

```toml theme={null}
[mcp_servers.breakcold]
url = "https://mcp.breakcold.com/mcp/v1"
bearer_token_env_var = "BREAKCOLD_MCP_TOKEN"
```
