This page covers configuring MCP servers for Codex threads launched through
Jaidu.
Overview
MCP servers extend Codex with additional tools and resources. You can use them to add browser automation, documentation lookups, remote logs, issue-management tools, and other capabilities to your Codex threads.
Accessing MCP Server Configuration
- Navigate to Settings in the Workspaces navbar
- Click the MCP Servers tab
- Edit the Codex MCP configuration JSON
Popular MCP Servers
Jaidu provides one-click installation for popular MCP servers. Click a card to insert a pre-configured MCP server into the Codex configuration.
Adding Custom MCP Servers
You can also add your own MCP servers manually:
Open the Codex Configuration
Open Settings → MCP Servers and review the existing Codex JSON.
Update the JSON
Add your custom MCP server alongside any existing entries.{
"mcpServers": {
"existing_server": {
"command": "npx",
"args": ["-y", "some-existing-server"]
},
"my_custom_server": {
"command": "node",
"args": ["/path/to/my-server.js"]
}
}
}
Save and Test
- Click Save Settings
- Start or continue a Codex thread
- Check Codex logs if a server does not connect
These changes persist in your Codex configuration and remain available across threads.
Best Practices
Add only the MCP servers you expect to use regularly. Too many tools dilute the agent’s context and make tool selection noisier.
Prefer servers that directly support your workflow, such as browser automation for frontend work or documentation retrieval for framework-heavy tasks.