You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(codex-plugin): use codex mcp add (the command that actually works)
Empirically reproduced (Codex CLI 0.133.0) — `codex plugin add` writes
[marketplaces.atlan] to ~/.codex/config.toml but does NOT write
[mcp_servers.atlan]. The plugin entry appears in Plugins → Manage but
the MCP server is never registered, so tool discovery returns 0 tools
and the agent silently falls back to spawning `codex exec` subprocesses.
`codex mcp add atlan --url https://mcp.atlan.com/mcp` writes the proper
[mcp_servers.atlan] section AND auto-launches the OAuth flow in one
step. No `--type` / `--transport` flag needed — Codex infers HTTP from
the URL.
Simplify the install section to one command that works. Keep the
"Once OpenAI's Plugin Directory is GA" stub for when the official
distribution path goes live.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: codex-plugin/README.md
+5-24Lines changed: 5 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,40 +4,21 @@ Connects Atlan's hosted MCP server (`https://mcp.atlan.com/mcp`) to [OpenAI Code
4
4
5
5
## Install
6
6
7
-
> **Note:** OpenAI's official Codex Plugin Directory is not yet GA. The build docs state: *"Adding plugins to the official Plugin Directory is coming soon. Self-serve plugin publishing and management are coming soon."* — see [developers.openai.com/codex/plugins/build](https://developers.openai.com/codex/plugins/build). Until then, Atlan customers install this plugin by registering Atlan's own marketplace — the steps below.
8
-
9
-
### Sideload from this repository
10
-
11
-
The repository root ships a marketplace manifest at `.agents/plugins/marketplace.json` that exposes the plugin as `atlan@atlan`.
12
-
13
7
```bash
14
-
# Register Atlan's marketplace (point at the GitHub repo, or a local clone's root)
Quit and relaunch **Codex.app** — the Atlan plugin appears under **Plugins → Manage** (enabled, with the bundled MCP server registered). On first tool call, Codex runs OAuth against `mcp.atlan.com` to authenticate against your Atlan tenant.
11
+
Codex detects OAuth support automatically and launches a browser tab to authenticate against `mcp.atlan.com` — no API keys or environment variables to manage. Quit and relaunch Codex (Cmd+Q the desktop app, or exit and re-run the CLI) after the auth flow completes so the new MCP server is loaded.
22
12
23
-
### From the official Codex Plugin Directory (once GA)
13
+
### Once OpenAI's Plugin Directory is GA
24
14
25
-
When OpenAI opens self-serve publishing and Atlan is accepted into the curated Plugin Directory, install via **Codex.app → Plugins → search "Atlan" → Install**, or:
15
+
OpenAI's [Codex Plugin Directory](https://developers.openai.com/codex/plugins/build) is not yet generally available. When self-serve publishing opens and Atlan is accepted, install via **Codex.app → Plugins → search "Atlan" → Install**, or:
26
16
27
17
```bash
28
18
codex plugin add atlan@openai-curated
29
19
```
30
20
31
-
### Direct MCP server install (CLI only, no plugin)
32
-
33
-
If you only need the MCP server in the Codex CLI and don't care about the desktop-app plugin entry, run:
0 commit comments