File tree Expand file tree Collapse file tree 2 files changed +66
-0
lines changed
Expand file tree Collapse file tree 2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,39 @@ sudo mv github-actions-utils-cli /usr/local/bin/
4242
4343Download ` github-actions-utils-cli-windows-amd64.exe ` and add it to your PATH.
4444
45+ #### Docker
46+
47+ ``` bash
48+ # Pull from GitHub Container Registry
49+ docker pull ghcr.io/techprimate/github-actions-utils-cli:latest
50+
51+ # Or pull from Docker Hub
52+ docker pull docker.io/techprimate/github-actions-utils-cli:latest
53+
54+ # Run MCP server
55+ echo ' {"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
56+ docker run -i --rm ghcr.io/techprimate/github-actions-utils-cli:latest mcp
57+ ```
58+
59+ For MCP client configuration (Claude Desktop, Cursor, etc.):
60+
61+ ``` json
62+ {
63+ "mcpServers" : {
64+ "github-actions-utils" : {
65+ "command" : " docker" ,
66+ "args" : [
67+ " run" ,
68+ " -i" ,
69+ " --rm" ,
70+ " ghcr.io/techprimate/github-actions-utils-cli:latest" ,
71+ " mcp"
72+ ]
73+ }
74+ }
75+ }
76+ ```
77+
4578### What's New?
4679
4780See the [ commit history] ( https://github.com/{{REPOSITORY}}/commits/main ) for recent changes.
Original file line number Diff line number Diff line change @@ -34,6 +34,39 @@ sudo mv github-actions-utils-cli /usr/local/bin/
3434
3535Download ` github-actions-utils-cli-windows-amd64.exe ` and add it to your PATH.
3636
37+ #### Docker
38+
39+ ``` bash
40+ # Pull from GitHub Container Registry
41+ docker pull ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}}
42+
43+ # Or pull from Docker Hub
44+ docker pull docker.io/techprimate/github-actions-utils-cli:{{VERSION}}
45+
46+ # Run MCP server
47+ echo ' {"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
48+ docker run -i --rm ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}} mcp
49+ ```
50+
51+ For MCP client configuration (Claude Desktop, Cursor, etc.):
52+
53+ ``` json
54+ {
55+ "mcpServers" : {
56+ "github-actions-utils" : {
57+ "command" : " docker" ,
58+ "args" : [
59+ " run" ,
60+ " -i" ,
61+ " --rm" ,
62+ " ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}}" ,
63+ " mcp"
64+ ]
65+ }
66+ }
67+ }
68+ ```
69+
3770### Usage
3871
3972``` bash
You can’t perform that action at this time.
0 commit comments