docs: update AGENTS.md for stdio-based MCP configuration#221
Merged
Conversation
Copilot
AI
changed the title
[WIP] Update README to document Docker-in-Docker removal
docs: document v0.9.1 breaking change - Docker-in-Docker removal
Jan 15, 2026
Mossaka
requested changes
Jan 15, 2026
README.md
Outdated
| - **L7 Domain Whitelisting**: Control HTTP/HTTPS traffic at the application layer | ||
| - **Host-Level Enforcement**: Uses iptables DOCKER-USER chain to enforce firewall on ALL containers | ||
|
|
||
| ## Breaking Changes |
Contributor
Author
There was a problem hiding this comment.
Removed the Breaking Changes section from README.md in commit 838ec87.
The README now goes directly from "What it does" to "Get started fast". The MCP configuration changes remain documented in AGENTS.md.
Contributor
Test Coverage Report
Coverage ThresholdsThe project has the following coverage thresholds configured:
Coverage report generated by `npm run test:coverage` |
Copilot
AI
changed the title
docs: document v0.9.1 breaking change - Docker-in-Docker removal
docs: update AGENTS.md for stdio-based MCP configuration
Jan 15, 2026
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
838ec87 to
98fd64a
Compare
Contributor
|
💫 TO BE CONTINUED... Smoke Claude failed! Our hero faces unexpected challenges... |
Contributor
|
📰 BREAKING: Smoke Copilot is now investigating this pull request. Sources say the story is developing... |
Contributor
Smoke Test ResultsLast 2 Merged PRs:
Tests:
Status: PASS
|
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.
PR #205 removed Docker-in-Docker support in v0.9.1. This updates the developer documentation in AGENTS.md to reflect the new stdio-based MCP server configuration.
Changes
AGENTS.md
"type": "local"+ docker with"type": "stdio"+ npxMigration Example
Before (no longer works):
{ "mcpServers": { "github": { "type": "local", "command": "docker", "args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server:v0.19.0"] } } }After (stdio-based with npx):
{ "mcpServers": { "github": { "type": "stdio", "command": "npx", "args": ["-y", "github-mcp-custom@1.0.20", "stdio"] } } }The agent container includes Node.js 22 with npx pre-installed, enabling stdio-based MCP servers without Docker.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.