Agent skill
julien-mcp-github-docker
Install GitHub MCP via Docker. Use when user needs GitHub integration through Docker container.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/julien-mcp-github-docker
SKILL.md
MCP GitHub (Docker) Installer
This skill installs the GitHub MCP server via Docker into the current project.
Installation Procedure
When the user asks to install GitHub Docker MCP:
- Check for existing
.mcp.jsonin the project root - Merge configuration - Add this server to
mcpServers:
{
"github-docker": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
}
}
- If
.mcp.jsondoesn't exist, create it with the full structure:
{
"mcpServers": {
"github-docker": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
}
}
}
Environment Variables Required
GITHUB_PERSONAL_ACCESS_TOKEN: Your GitHub Personal Access Token
Prerequisites
- Docker installed and running
Usage After Installation
Restart Claude Code to activate the MCP server.
Skill Chaining
- Input: User request to install GitHub Docker MCP
- Output: Configured
.mcp.jsonwith github-docker server - Tools Used: Read, Edit, Write
- Chains With: GitHub HTTP MCP as alternative
Troubleshooting
| Problem | Solution |
|---|---|
| Docker not running | Start Docker Desktop |
| Image pull failed | Check network and Docker Hub access |
| Token invalid | Generate new PAT at github.com/settings/tokens |
| Permission denied | Run Docker with appropriate permissions |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?