Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/content/docs/setup/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,8 @@ Manage MCP (Model Context Protocol) servers.
```bash wrap
gh aw mcp list # List all MCP servers
gh aw mcp list workflow-name # List servers for specific workflow
gh aw mcp list-tools <mcp-server> # List tools for specific MCP server
gh aw mcp list-tools <mcp-server> workflow # List tools in specific workflow
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parameter format is inconsistent with the actual command implementation. According to the source code (mcp_list_tools.go line 231), the command signature is list-tools <mcp_server> [workflow-file], where the second parameter is [workflow-file] (a specific workflow filename), not just workflow. The documentation should use a more descriptive parameter name like <workflow-name> or <workflow-file> to match both the implementation and existing documentation examples in mcps.md (line 334: gh aw mcp list-tools notion my-workflow) and web-search.md (line 66: gh aw mcp list-tools tavily my-workflow --verbose).

Suggested change
gh aw mcp list-tools <mcp-server> workflow # List tools in specific workflow
gh aw mcp list-tools <mcp-server> <workflow-file> # List tools in specific workflow file

Copilot uses AI. Check for mistakes.
gh aw mcp inspect workflow-name # Inspect and test servers
gh aw mcp add # Add servers from registry
```
Expand Down
Loading