docs(codex-plugin): install via GitHub marketplace + uninstall commands#232
Merged
Conversation
9a4fffc to
dc491f2
Compare
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>
dc491f2 to
467f62c
Compare
Hk669
approved these changes
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two README updates for the Atlan Codex plugin:
codex plugin marketplace add https://github.com/atlanhq/agent-toolkit) so the plugin lands properly in Plugins → Manage with logo + metadata. Add a third step to register the MCP server (codex mcp add) until upstream Codex CLI fixes the underlying bug.Bug confirmed
Empirically reproduced (Codex CLI 0.133.0) —
codex plugin addwrites[marketplaces.atlan]to~/.codex/config.tomlbut does NOT write[mcp_servers.atlan]. The plugin appears in Plugins → Manage but the MCP server is never registered; tool discovery returns 0 tools; the agent silently falls back to spawningcodex execsubprocesses.codex mcp add atlan --url https://mcp.atlan.com/mcpwrites the proper section AND auto-launches OAuth in one step.Recommended install (3 commands)
Step 3 is needed today because of the upstream Codex CLI bug. The README explains this in one sentence and notes that the step will become unnecessary once Codex CLI honours the plugin's bundled
.mcp.json.Uninstall section
Plus a note that some older Codex CLI versions leave a stale
[mcp_servers.atlan]block aftercodex mcp remove, requiring manual cleanup.Tested end-to-end
Ran the 3-command install on a clean profile (Codex CLI 0.133.0) — all three steps succeeded; OAuth flow auto-launched on step 3 with the expected
https://mcp.atlan.com/oauth/authorize?...URL.Follow-up
Upstream issue at openai/codex so
codex plugin addis taught to honour the plugin's bundled.mcp.json— to be filed separately.🤖 Generated with Claude Code