You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mcp: update GitHub MCP after issue tool consolidation (#1436)
**Description**
GitHub has consolidated the tools related to issues, causing some of our
integration tests to break. This PR adjusts the tests and docs to use
the new tool names.
**Related Issues/PRs (if applicable)**
GitHub PR: github/github-mcp-server#1211
**Special notes for reviewers (if applicable)**
N/A
Signed-off-by: Ignasi Barrera <[email protected]>
Copy file name to clipboardExpand all lines: site/docs/capabilities/mcp/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ sequenceDiagram
65
65
66
66
-**Session Management**: The gateway creates unified sessions by encoding multiple backend session IDs, handling reconnection with `Last-Event-ID` support for SSE streams.
67
67
-**Notification Handling**: Long-lived SSE streams from multiple MCP servers are merged into a single stream for clients, with proper event ID reconstruction.
68
-
-**Request Routing**: Tool names are automatically prefixed with the backend name (e.g., `github__get_issue`) to route calls to the correct upstream server.
68
+
-**Request Routing**: Tool names are automatically prefixed with the backend name (e.g., `github__issue_read`) to route calls to the correct upstream server.
69
69
70
70
For detailed architecture and design decisions, see the [MCP Gateway proposal](https://github.com/envoyproxy/ai-gateway/tree/main/docs/proposals/006-mcp-gateway).
71
71
@@ -151,7 +151,7 @@ spec:
151
151
path: "/mcp/x/issues/readonly"
152
152
toolSelector:
153
153
includeRegex:
154
-
- .*_issues?.* # Matches get_issue, list_issues, etc.
154
+
- .*issues?.* # Matches issue_read, list_issues, etc.
Tool names are automatically prefixed with the server name (e.g., `github__get_issue`, `context7__resolve-library-id`) to route calls to the correct backend.
243
+
Tool names are automatically prefixed with the server name (e.g., `github__issue_read`, `context7__resolve-library-id`) to route calls to the correct backend.
0 commit comments