feat: add GitHub MCP server to container agents#976
Closed
5queezer wants to merge 26 commits intoqwibitai:mainfrom
Closed
feat: add GitHub MCP server to container agents#9765queezer wants to merge 26 commits intoqwibitai:mainfrom
5queezer wants to merge 26 commits intoqwibitai:mainfrom
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Wrap outbound sendMessage calls with parse_mode: 'Markdown' so that Claude's natural formatting (*bold*, _italic_, `code`, etc.) renders correctly in Telegram instead of showing raw asterisks and underscores. Falls back to plain text if Telegram rejects the Markdown formatting.
feat: add Markdown formatting for outbound messages
The sendTelegramMessage helper now passes { parse_mode: 'Markdown' }
to bot.api.sendMessage, but three tests still expected only two args.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Pre-existing formatting issue that causes CI format check to fail. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…se-mode fix: sendMessage test expectations for parse_mode
grammY creates its own https.Agent internally, bypassing any global proxy. In Docker Sandbox, NanoClaw sets https.globalAgent to a proxy agent at startup. This tells grammY to use it instead. On non-sandbox setups it's a no-op. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fix: use https.globalAgent in grammY Bot for sandbox proxy
Reads GITHUB_PERSONAL_ACCESS_TOKEN from .env and configures the official @modelcontextprotocol/server-github MCP server in each container's settings.json. Agents get structured GitHub tools (create_issue, create_pull_request, search_repositories, etc.) without raw token exposure. Also refactors settings.json to read-merge-write so existing group customizations are preserved and new config (like MCP servers) applies to all groups, not just newly created ones. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Mar 12, 2026
Author
|
Closing — this PR mixes unrelated changes (Telegram, grammy, fork-sync workflow, version bumps) with the GitHub MCP feature. The feature itself should be contributed as a skill ( |
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.
Summary
GITHUB_PERSONAL_ACCESS_TOKENfrom.envand injects the official@modelcontextprotocol/server-githubMCP server into each container'ssettings.jsonTest plan
GITHUB_PERSONAL_ACCESS_TOKEN=ghp_...to.envsettings.jsonin the group's.claude/dir containsmcpServers.github.env, verify MCP server is not added🤖 Generated with Claude Code