-
Notifications
You must be signed in to change notification settings - Fork 36
fix: containerize agentic_workflows MCP server per Gateway Spec v1.0.0 #10181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
|
✨ The prophecy is fulfilled... Smoke Codex has completed its mystical journey. The stars align. 🌟 |
|
📰 VERDICT: Smoke Copilot has concluded. All systems operational. This is a developing story. 🎤 |
|
🎬 THE END — Smoke Claude MISSION: ACCOMPLISHED! The hero saves the day! ✨ |
|
🎉 Yo ho ho! Changeset Generator found the treasure and completed successfully! ⚓💰 |
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
|
Claude Engine Smoke Test Results ✅ GitHub MCP - Retrieved last 2 merged PRs Status: PARTIAL PASS (5/6 tests passed)
|
|
GitHub MCP (last 2 merged PRs): ✅
|
Smoke Test Results (Run #21053466557)Last 2 Merged PRs:
Tests: Status: PASS (3/4 core tests) cc @Mossaka
|
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
MCP Gateway v0.0.60 requires stdio servers to use the
containerfield. Theagentic_workflowsserver was using the oldcommandformat which is no longer allowed.Changes
renderAgenticWorkflowsMCPConfigWithOptionsand TOML variants to use container formatDefaultAlpineImage,DefaultGhAwMount,DefaultTmpGhAwMountfor consistent mount pathsalpine:latestto image list whenagentic-workflowstool is enabledrenderBuiltinMCPServerBlockfunction andBuiltinMCPServerOptionsstructBefore
{ "type": "stdio", "command": "gh", "args": ["aw", "mcp-server"] }After
{ "type": "stdio", "container": "alpine:latest", "entrypoint": "/opt/gh-aw/gh-aw", "entrypointArgs": ["mcp-server"], "mounts": ["/opt/gh-aw:/opt/gh-aw:ro"] }Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.
Changeset
DefaultAlpineImageand pre-download entry; remove obsolete builtin MCP server code; update tests and recompile workflows.