Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,11 @@ API_KEY = "value"
experimental_use_rmcp_client = true
[mcp_servers.figma]
url = "https://mcp.linear.app/mcp"
# Optional bearer token to be passed into an `Authorization: Bearer <token>` header
# Use this with caution because the token is in plaintext and can be read by Codex itself.
bearer_token = "<token>"
# Optional: set `bearer_token_env_var` to the name of an environment variable whose
# value should be passed into an `Authorization: Bearer <token>` header.
# Export the environment variable before launching Codex so the MCP client can read it.
# (Inline `bearer_token` values are no longer supported.)
bearer_token_env_var = "FIGMA_MCP_TOKEN"
```

For oauth login, you must enable `experimental_use_rmcp_client = true` and then run `codex mcp login server_name`
Expand Down