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
6 changes: 5 additions & 1 deletion .github/workflows/agent-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ jobs:
- name: Install mcp-testkit
run: |
python -m pip install --upgrade pip
pip install mcp-testkit
# mcp-testkit's own mcp[cli]>=1.0.0 bound is unbounded upward, and
# this Python setup is mcp-testkit-only (nothing else here caps mcp
# the way google-adk/openai-agents do for python-sdk's e2e install)
# -- so pin below mcp 2.0.0's FastMCP -> MCPServer rewrite ourselves.
pip install mcp-testkit "mcp<2.0.0"

- name: Start mcp-testkit
run: |
Expand Down
Loading