Objective
Verify that the new get_gist tool from GitHub MCP Server v0.20.2 is available and functional after the update.
Context
GitHub MCP Server v0.20.2 introduced a new get_gist tool (PR github/github-mcp-server#1105). After recompiling workflows, this tool should be available to workflows using the GitHub MCP server.
Approach
- After workflows are recompiled with v0.20.2, inspect a workflow that uses GitHub MCP tools
- Use
gh aw mcp inspect to verify the get_gist tool is listed
- Optionally create a simple test workflow that uses the
get_gist tool
- Document the tool's availability
Commands to Run
# List workflows with MCP servers
gh aw mcp list
# Inspect GitHub MCP server tools in a workflow
gh aw mcp inspect (workflow-name) --server github
# Check if get_gist is available
gh aw mcp inspect (workflow-name) --server github --tool get_gist
Files to Reference
- Any workflow file using
tools.github configuration
- Example:
.github/workflows/cli-version-checker.md
Acceptance Criteria
Optional Enhancement
If time permits, create a minimal test workflow:
---
on: workflow_dispatch
tools:
github:
allowed: [get_gist]
---
# Test GitHub MCP Server v0.20.2 get_gist Tool
Fetch gist ID `abc123def456` using the new get_gist tool.
Notes
AI generated by Plan Command for #3571
Objective
Verify that the new
get_gisttool from GitHub MCP Server v0.20.2 is available and functional after the update.Context
GitHub MCP Server v0.20.2 introduced a new
get_gisttool (PR github/github-mcp-server#1105). After recompiling workflows, this tool should be available to workflows using the GitHub MCP server.Approach
gh aw mcp inspectto verify theget_gisttool is listedget_gisttoolCommands to Run
Files to Reference
tools.githubconfiguration.github/workflows/cli-version-checker.mdAcceptance Criteria
get_gisttool appears in MCP server tool listgh aw mcp inspectOptional Enhancement
If time permits, create a minimal test workflow:
Notes
Related to [ca] Update Codex to 0.57.0 and GitHub MCP Server to v0.20.2 #3571