Fix awmg MCP config rewrite by including gateway section in initial config#8563
Merged
pelikhan merged 2 commits intocopilot/enable-sandbox-mcp-gatewayfrom Jan 2, 2026
Merged
Conversation
When MCP gateway is enabled, the initial mcp-config.json must include a "gateway" section with port (and optionally apiKey) so that awmg can properly read the configuration and rewrite the config file with gatewayed URLs. Changes: - Add GatewayConfig field to JSONMCPConfigOptions - Update RenderJSONMCPConfig to write gateway section when configured - Update copilot_mcp.go to pass gateway config when MCP gateway enabled - Recompile all workflows with updated config generation Fixes the issue where awmg was not rewriting mcp-config properly because the initial config lacked the gateway section needed for awmg to know the port and other settings. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix improper rewriting of mcp-config with gatewayed url
Fix awmg MCP config rewrite by including gateway section in initial config
Jan 2, 2026
5 tasks
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.
The
awmgbinary requires agatewaysection inmcp-config.jsonto determine the port and settings for rewriting server configurations with gatewayed URLs. The initial config generated byRenderMCPConfigwas missing this section, causing the rewrite to fail silently.Changes:
pkg/workflow/mcp_renderer.go: AddedGatewayConfigfield toJSONMCPConfigOptionsand updatedRenderJSONMCPConfigto write gateway section when providedpkg/workflow/copilot_mcp.go: PassworkflowData.SandboxConfig.MCPasGatewayConfigwhen MCP gateway is enabledBefore:
{ "mcpServers": { "github": { "command": "docker", "args": [...] } } }After:
{ "mcpServers": { "github": { "command": "docker", "args": [...] } }, "gateway": { "port": 8080 } }This allows
awmgto read the gateway configuration and properly rewrite server entries to use HTTP URLs pointing tohttp://localhost:8080/mcp/{server}.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.