File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1212 with :
1313 agent : agentcatalog/github
1414 prompt : " Who is jeanlaurent on github?"
15+ mcp-gateway : true
1516 anthropic-api-key : ${{ secrets.ANTHROPIC_API_KEY }}
Original file line number Diff line number Diff line change 6868 agent : jeanlaurent/pr-reviewer
6969 prompt : " Review this PR"
7070 cagent-version : v1.6.6
71+ mcp-gateway : true # Set to true to install mcp-gateway
7172 mcp-gateway-version : v0.20.0
7273 yolo : false # Require manual approval
7374 tui : true # Enable terminal UI
8485| ` agent` | Agent identifier (e.g., `jeanlaurent/pr-reviewer`) or path to `.yaml` file | Yes | - |
8586| `prompt` | Prompt to pass to the agent | No | - |
8687| `cagent-version` | Version of cagent to use | No | `v1.6.6` |
88+ | `mcp-gateway` | Install mcp-gateway (`true`/`false`) | No | `false` |
8789| `mcp-gateway-version` | Version of mcp-gateway to use | No | `v0.20.0` |
8890| `anthropic-api-key` | Anthropic API key | No | `$ANTHROPIC_API_KEY` env var |
8991| `openai-api-key` | OpenAI API key | No | `$OPENAI_API_KEY` env var |
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ inputs:
1616 description : ' Version of cagent to use'
1717 required : false
1818 default : ' v1.6.6'
19+ mcp-gateway :
20+ description : ' Install mcp-gateway (true/false)'
21+ required : false
22+ default : ' false'
1923 mcp-gateway-version :
2024 description : ' Version of mcp-gateway to use'
2125 required : false
6771 ./cagent version
6872
6973 - name : Download mcp-gateway binary
74+ if : ${{ inputs.mcp-gateway == 'true' }}
7075 shell : bash
7176 run : |
7277 echo "Downloading mcp-gateway ${{ inputs.mcp-gateway-version }}..."
You can’t perform that action at this time.
0 commit comments