Files
mcp_web_dev_server/examples/codex/config.toml
T
melabidi e119153644
Tests / test (push) Successful in 9m41s
Tests / build-and-push-image (push) Successful in 23s
Merge Codex MCP config into ~/.codex from run-workspaces.sh.
2026-07-31 16:31:32 -04:00

43 lines
1.1 KiB
TOML

# Source tables merged into ~/.codex/config.toml by ./run-workspaces.sh
# (idempotent managed block). You can also merge by hand into a trusted
# project .codex/config.toml.
#
# Each entry points at a dedicated web-dev-mcp container (one WORKSPACE_ROOT
# per server). Localhost bind = no MCP_HTTP_TOKEN required.
[mcp_servers.web-dev-ws1]
url = "http://127.0.0.1:3939/mcp"
startup_timeout_sec = 20
tool_timeout_sec = 120
enabled = true
[mcp_servers.web-dev-ws2]
url = "http://127.0.0.1:3940/mcp"
startup_timeout_sec = 20
tool_timeout_sec = 120
enabled = true
[mcp_servers.web-dev-ws3]
url = "http://127.0.0.1:3941/mcp"
startup_timeout_sec = 20
tool_timeout_sec = 120
enabled = true
[mcp_servers.web-dev-ws4]
url = "http://127.0.0.1:3942/mcp"
startup_timeout_sec = 20
tool_timeout_sec = 120
enabled = true
# Optional: if you bind containers to 0.0.0.0 and set MCP_HTTP_TOKEN,
# set the token in your shell env and uncomment:
#
# [mcp_servers.web-dev-ws1]
# url = "http://127.0.0.1:3939/mcp"
# bearer_token_env_var = "MCP_HTTP_TOKEN_WS1"
#
# [mcp_servers.web-dev-ws2]
# url = "http://127.0.0.1:3940/mcp"
# bearer_token_env_var = "MCP_HTTP_TOKEN_WS2"
# ... etc