Thanks! Context Mode is a standard MCP server, so it works with any client that supports MCP — including Codex and opencode.
Codex CLI:
codex mcp add context-mode -- npx -y context-mode
Or in ~/.codex/config.toml: [mcp_servers.context-mode]
command = "npx"
args = ["-y", "context-mode"]
opencode:In opencode.json:
{
"mcp": {
"context-mode": {
"type": "local",
"command": ["npx", "-y", "context-mode"],
"enabled": true
}
}
}
We haven't tested yet — would love to hear if anyone tries it!