-
Notifications
You must be signed in to change notification settings - Fork 35
Closed as not planned
Closed as not planned
Copy link
Description
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 inspectto verify theget_gisttool is listed - Optionally create a simple test workflow that uses the
get_gisttool - 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_gistFiles to Reference
- Any workflow file using
tools.githubconfiguration - Example:
.github/workflows/cli-version-checker.md
Acceptance Criteria
-
get_gisttool appears in MCP server tool list - Tool description and parameters are accessible via
gh aw mcp inspect - New tool is documented as available (issue comment)
- No errors when inspecting the tool
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
- This validates the MCP Server update was successful
- New security features (content sanitization) are passive and don't need explicit testing
- Related to [ca] Update Codex to 0.57.0 and GitHub MCP Server to v0.20.2 #3571
Related to [ca] Update Codex to 0.57.0 and GitHub MCP Server to v0.20.2 #3571
AI generated by Plan Command for #3571